-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "jsonld-document-loader",
"version": "2.3.1-0",
"description": "A document loader API for jsonld.js.",
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/jsonld-document-loader"
},
"license": "BSD-3-Clause",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com"
},
"bugs": {
"url": "https://github.com/digitalbazaar/jsonld-document-loader/issues"
},
"homepage": "https://github.com/digitalbazaar/jsonld-document-loader",
"scripts": {
"mocha": "mocha ./test/*.spec.js",
"test": "npm run test-node && npm run test-karma",
"test-node": "cross-env NODE_ENV=test npm run mocha",
"test-karma": "karma start karma.conf.cjs",
"coverage": "cross-env NODE_ENV=test c8 --reporter=lcov --reporter=text-summary npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly npm run test-node",
"coverage-report": "c8 report",
"lint": "eslint ."
},
"devDependencies": {
"@digitalbazaar/did-io": "^2.0.0",
"c8": "^10.1.2",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^48.10.2",
"eslint-plugin-unicorn": "^55.0.0",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^10.7.0",
"webpack": "^5.93.0"
},
"engines": {
"node": ">=18"
}
}