-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
63 lines (63 loc) · 1.86 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-cli",
"version": "10.0.3",
"description": "Command line tools to encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC8949).",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hildjj/node-cbor.git",
"directory": "pacakges/cbor-cli"
},
"homepage": "https://github.com/hildjj/node-cbor/tree/main/packages/cbor-cli",
"bin": {
"cbor": "bin/cbor.js",
"cbor2comment": "bin/cbor2comment.js",
"cbor2diag": "bin/cbor2diag.js",
"cbor2js": "bin/cbor2js.js",
"cbor2json": "bin/cbor2json.js",
"js2cbor": "bin/js2cbor.js",
"json2cbor": "bin/json2cbor.js"
},
"directories": {
"man": "man"
},
"scripts": {
"clean": "rimraf coverage .nyc_output/ man/*",
"lint": "eslint lib/*.js bin/* test/*.js",
"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",
"release": "npm version patch && git push --follow-tags && npm publish",
"typecheck": "tsc --allowJs --checkJs --noEmit --target ES6 --moduleResolution node lib/*.js",
"coverage": "nyc -r html ava",
"dev": "light-server -q -s. -w 'lib/*.js,test/*.js,bin/*.js # npm run coverage' -o /coverage/index.html"
},
"keywords": [
"coap",
"cbor",
"json",
"cli"
],
"author": {
"name": "Joe Hildebrand",
"email": "[email protected]"
},
"devDependencies": {
"marked": "^14.1.3",
"marked-man": "^2.1.0",
"mock-stdio": "^1.0.3",
"nofilter": "^3.0.2",
"p-event": "^4.2.0",
"rimraf": "5.0.10"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"bignumber.js": "^9.1.2",
"cbor": "^9.0.2",
"cbor-bigdecimal": "^9.0.0",
"commander": "^12.1.0",
"json-text-sequence": "1.0.1"
},
"engines": {
"node": ">=18"
}
}