-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cbor2",
"version": "1.9.0",
"description": "Encode and parse data in the Concise Binary Object Representation (CBOR) data format (RFC8949).",
"exports": {
".": "./lib/index.js",
"./comment": "./lib/comment.js",
"./decoder": "./lib/decoder.js",
"./diagnostic": "./lib/diagnostic.js",
"./encoder": "./lib/encoder.js",
"./simple": "./lib/simple.js",
"./sorts": "./lib/sorts.js",
"./tag": "./lib/tag.js",
"./types": "./lib/types.js",
"./utils": "./lib/utils.js",
"./writer": "./lib/writer.js"
},
"files": [
"lib"
],
"type": "module",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hildjj/cbor2.git"
},
"homepage": "https://github.com/hildjj/cbor2",
"scripts": {
"clean": "rimraf lib coverage docs src/version.ts",
"docs": "typedoc && cd web && npm run build",
"lint": "eslint .",
"start": "cd web && npm start",
"pretest": "npm run build:sourcemap",
"test": "npm run test:noBuild",
"posttest": "tsup --silent",
"test:noBuild": "c8 node --enable-source-maps --test test/*.test.js",
"test:web": "cd web && npm test",
"build": "npm run ver && tsup",
"build:sourcemap": "npm run build -- --sourcemap inline",
"watch": "tsup --sourcemap inline --watch src/ --watch test/ --onSuccess 'npm run test:noBuild'",
"ci": "npm run clean && npm run build:sourcemap && npm run lint && npm run test:noBuild",
"ver": "package-extract -st -o src/version.ts"
},
"keywords": [
"coap",
"cbor",
"json",
"rfc7049",
"rfc8949"
],
"author": {
"name": "Joe Hildebrand",
"email": "[email protected]"
},
"contributors": [
{
"name": "İrfan Bilaloğlu",
"email": "[email protected]",
"url": "https://github.com/irfan798"
}
],
"license": "MIT",
"devDependencies": {
"@cto.af/eslint-config": "5.1.6",
"c8": "10.1.3",
"eslint": "9.18.0",
"eslint-plugin-jsdoc": "50.6.2",
"eslint-plugin-markdown": "5.1.0",
"package-extract": "2.3.0",
"rimraf": "^5.0.10",
"tsup": "8.3.5",
"typedoc": "0.27.6",
"typescript-eslint": "8.20.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}