-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "cbor",
"version": "10.0.3",
"description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC8949).",
"main": "./lib/cbor.js",
"repository": {
"type": "git",
"url": "git+ssh://git@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 && npm run copy-types",
"copy-types": "copyfiles \"./types/**\" \"../cbor-web/\""
},
"keywords": [
"coap",
"cbor",
"json",
"rfc7049",
"rfc8949"
],
"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/)",
"Denis Lapaev <den@lapaev.me> (http://lapaev.me/)",
"Ruben Bridgewater <ruben@bridgewater.de>",
"Burt Harris <Burt_Harris_cbor@azxs.33mail.com>",
"Jakub Arbet <hi@jakubarbet.me> (https://jakubarbet.me/)",
"Rouzbeh Karimi <rouzweltt@gmail.com> (https://github.com/rouzwelt)"
],
"types": "./types/lib/cbor.d.ts",
"dependencies": {
"nofilter": "^3.0.2"
},
"devDependencies": {
"@types/node": "^22",
"bignumber.js": "^9.1.2",
"garbage": "~0.0.0",
"p-event": "^4.2.0",
"rimraf": "5.0.10"
},
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=18"
}
}