forked from hildjj/node-cbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cbor",
"version": "4.0.0",
"description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC7049).",
"main": "./lib/cbor.js",
"repository": {
"type": "git",
"url": "http://github.com/hildjj/node-cbor.git"
},
"homepage": "http://hildjj.github.io/node-cbor/",
"directories": {
"lib": "lib",
"man": "man"
},
"bin": {
"cbor2comment": "./bin/cbor2comment",
"cbor2diag": "./bin/cbor2diag",
"cbor2json": "./bin/cbor2json",
"json2cbor": "./bin/json2cbor"
},
"browser": {
"fs": false
},
"scripts": {
"clean": "rm -rf coverage .nyc_output/ docs/api man/*",
"lint": "eslint lib/*.js bin/* test/*.js",
"doc": "jsdoc -c .jsdoc.conf",
"coverage": "nyc npm test",
"coveragehtml": "nyc report -r html",
"precoveragehtml": "npm run coverage",
"test": "ava",
"man": "mkdir -p man; for f in man_src/*.md; do b=`basename $f`; marked-man $f -o man/${b%.md}.1; gzip -9f man/${b%.md}.1; done",
"watch": "watch 'npm run coveragehtml' lib/ test/",
"release": "npm version patch && git push --follow-tags && npm publish",
"live": "live-server --port=4002 --ignorePattern='(js|css|png)$' coverage",
"predev": "if [ ! -f coverage/index.html ]; then mkdir coverage; cp .waiting.html coverage/index.html; fi",
"dev": "npm-run-all -p --silent watch live",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"coap",
"cbor",
"json"
],
"author": {
"name": "Joe Hildebrand",
"email": "[email protected]"
},
"contributors": [
"Patrick Gansterer <[email protected]> (http://paroga.com/)",
"Artyom Yagilev <[email protected]> (http://scorpi.org/)",
"Denis Lapaev <[email protected]> (http://lapaev.me/)",
"Ruben Bridgewater <[email protected]>"
],
"ava": {
"files": [
"test/*.ava.js"
]
},
"devDependencies": {
"ava": "^0.25",
"concordance": "^3.0",
"eslint": "^4.17",
"garbage": "0.0",
"jsdoc": "^3.5",
"live-server": "*",
"marked-man": "*",
"minami": "*",
"npm-run-all": "^4.1",
"nyc": "^11.5",
"watch": "*"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"bignumber.js": "^6.0",
"commander": "^2.14.1",
"json-text-sequence": "^0.1",
"nofilter": "^0.0.3"
},
"engines": {
"node": ">=4"
}
}