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
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "cbor",
"version": "0.3.14",
"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": {
"test": "grunt test",
"ci": "grunt ci",
"prepublish": "grunt prepublish"
},
"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": {
"coffeelint": "^1.9.7",
"garbage": "0.0.0",
"grunt": "~0.4.5",
"grunt-codo": "^0.2.0",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "~0.13.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-coveralls": "~1.0.0",
"grunt-express": "^1.4.1",
"grunt-markedman": "^1.0.0",
"grunt-release": "^0.12.0",
"grunt-shell": "~1.1.2",
"jit-grunt": "^0.9.1",
"source-map-support": "^0.2.10",
"temp": "~0.8.1"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"async": "^1.0.0",
"bignumber.js": "~2.0.7",
"commander": "^2.8.1"
}
}