forked from hildjj/node-cbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "cbor",
"version": "8.1.0",
"description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC8949).",
"main": "./lib/cbor.js",
"repository": {
"type": "git",
"url": "http://github.com/hildjj/node-cbor.git",
"directory": "packages/cbor"
},
"homepage": "https://github.com/hildjj/node-cbor/tree/main/packages/cbor",
"directories": {
"lib": "lib"
},
"browser": {
"fs": false
},
"scripts": {
"clean": "rimraf coverage .nyc_output/ docs",
"lint": "eslint lib/*.js test/*.js",
"coverage": "nyc -r lcov npm test",
"test": "ava test/*.ava.js",
"release": "npm version patch && git push --follow-tags && npm publish",
"predev": "npm run coverage",
"dev": "light-server -q -s. -w 'lib/*.js,test/*.js # npm run coverage' -o /coverage/lcov-report/index.html",
"types": "tsc"
},
"keywords": [
"coap",
"cbor",
"json",
"rfc7049",
"rfc8949"
],
"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]>",
"Burt Harris <[email protected]>",
"Jakub Arbet <[email protected]> (https://jakubarbet.me/)"
],
"types": "./types/lib/cbor.d.ts",
"dependencies": {
"nofilter": "^3.1.0"
},
"devDependencies": {
"@types/node": "*",
"bignumber.js": "^9.1.0",
"garbage": "~0.0.0",
"p-event": "^4.2.0",
"rimraf": "^3.0.2"
},
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=12.19"
}
}