-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 793 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "amf-codec",
"version": "1.4.0",
"description": "AMF0 codec with tiny size and high performance",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha",
"posttest": "npm run coverage",
"coverage": "nyc report --reporter=lcov",
"lint": "eslint -v && eslint ."
},
"author": "David Csirmaz",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:csimi/amf-codec.git"
},
"devDependencies": {
"@csimi/eslint-config": "^3.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19"
},
"files": [
"lib/**"
],
"keywords": [
"amf",
"amf0"
]
}