forked from hildjj/node-cbor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.36 KB
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
{
"name": "cbor",
"version": "1.0.6",
"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"
},
"scripts": {
"clean": "rm -rf coverage lib docs/doc man/*",
"lint": "coffeelint src test",
"coffee": "coffee -cm -o lib/ src",
"coverage": "nyc npm test",
"precoverage": "npm run coffee -s",
"coveragehtml": "nyc report -r html",
"precoveragehtml": "npm run coverage",
"test": "nodeunit test/*.test.js",
"pretest": "npm run coffee -s",
"codo": "codo src",
"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",
"doc": "npm-run-all --silent man codo",
"prepublish": "npm-run-all --silent coffee doc",
"watch": "watch 'npm run coveragehtml' src/ test/",
"release": "npm version patch && git push --follow-tags && npm publish",
"live": "live-server --port=4002 --ignorePattern='(js|css|png)$' coverage",
"dev": "npm-run-all -p --silent watch live",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"coap",
"cbor",
"json"
],
"author": {
"name": "Joe Hildebrand",
"email": "joe-github@cursive.net"
},
"contributors": [
"Patrick Gansterer <paroga@paroga.com> (http://paroga.com/)",
"Artyom Yagilev <github@scorpi.org> (http://scorpi.org/)"
],
"devDependencies": {
"async": "latest",
"codo": "latest",
"coffeelint": "latest",
"coffee-script": "latest",
"coveralls": "latest",
"garbage": "latest",
"nyc": "latest",
"live-server": "latest",
"marked-man": "latest",
"nodeunit": "latest",
"npm-run-all": "latest",
"source-map-support": "latest",
"watch": "latest"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"bignumber.js": "~2.4",
"commander": "^2.9",
"json-text-sequence": "^0.1",
"nofilter": "^0.0.3"
},
"engines": {
"node": ">=4.1.0"
}
}