-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "@cdot/cbor",
"version": "1.0.5",
"description": "CBOR implementation using streams",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/cdot/CBOR"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"package.json",
"README.md",
"dist/*/*.js",
"dist/*/*.json",
"src/*.js"
],
"author": {
"name": "Crawford Currie",
"url": "https://github.com/cdot"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"c8": "^7.12.0",
"chai": "^4.3.7",
"docdash": "^2.0.0",
"eslint": "^10.0.3",
"eslint-formatter-unix": "^9.0.1",
"esprima": "^4.0.1",
"globals": "^17.4.0",
"jsdoc": "^4.0.0",
"marked": "^4.2.4",
"mocha": "^10.2.0",
"uglify-js": "^3.17.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "webpack -c webpack/cjs.js & webpack -c webpack/mjs.js & webpack -c webpack/amd.js",
"doc": "jsdoc --verbose -R README.md -c jsdoc_config.json -r -d doc src -t node_modules/docdash",
"lint": "eslint --format unix src",
"test": "mocha test",
"coverage": "NODE_ENV=test c8 --reporter=html --reporter text npm run test",
"update": "ncu -u "
}
}