forked from digitalbazaar/cborld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.25 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
80
81
82
83
{
"name": "@digitalbazaar/cborld",
"version": "2.0.2-0",
"description": "A CBOR-LD encoder/decoder for Javascript.",
"license": "BSD-3-Clause",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"homepage": "https://github.com/digitalbazaar/cborld",
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/cborld"
},
"bugs": {
"url": "https://github.com/digitalbazaar/cborld/issues"
},
"keywords": [
"json-ld",
"cbor",
"linked data",
"compression"
],
"main": "index.js",
"module": "main.js",
"browser": {
"index.js": "main.js",
"./lib/loader.js": "./lib/loader-browser.js",
"./lib/util.js": "./lib/util-browser.js"
},
"bin": "./cborld",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha -r esm --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} tests/*.spec.js",
"test-karma": "karma start karma.conf.js",
"test-watch": "cross-env NODE_ENV=test mocha -r esm --watch --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} tests/*.spec.js",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test nyc --reporter=lcovonly npm run test-node",
"coverage-report": "nyc report",
"lint": "eslint ."
},
"files": [
"index.js",
"lib",
"main.js"
],
"dependencies": {
"base58-universal": "^1.0.0",
"cbor": "^5.0.2",
"esm": "^3.2.22",
"js-base64": "^3.0.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-bytes": "^0.1.2",
"cross-env": "^6.0.3",
"eslint": "^7.0.0",
"eslint-config-digitalbazaar": "^2.5.0",
"eslint-plugin-jsdoc": "^30.0.3",
"karma": "^5.0.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^8.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"webpack": "^4.43.0"
},
"nyc": {
"exclude": [
"tests"
]
}
}