-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.18 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
{
"name": "@digitalbazaar/ecdsa-rdfc-2019-cryptosuite",
"version": "1.2.1-0",
"description": "An ECDSA-RDFC-2019 Data Integrity cryptosuite for use with jsonld-signatures.",
"homepage": "https://github.com/digitalbazaar/ecdsa-rdfc-2019-cryptosuite",
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/ecdsa-rdfc-2019-cryptosuite"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib/**/*.js"
],
"browser": {
"crypto": false,
"./lib/sha.js": "./lib/sha-browser.js"
},
"dependencies": {
"@digitalbazaar/ecdsa-multikey": "^1.6.0",
"jsonld": "^8.3.1",
"rdf-canonize": "^4.0.1"
},
"devDependencies": {
"@digitalbazaar/data-integrity": "^2.3.0",
"@digitalbazaar/data-integrity-context": "^2.0.0",
"@digitalbazaar/did-method-key": "^5.2.0",
"@digitalbazaar/multikey-context": "^2.0.1",
"@digitalbazaar/security-document-loader": "^3.0.0",
"c8": "^7.11.3",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"did-io": "^0.8.3",
"did-method-key": "^0.7.0",
"eslint": "^8.53.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-unicorn": "^55.0.0",
"jsonld-signatures": "^11.2.1",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^5.73.0"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "npm run test-node",
"test-karma": "karma start karma.conf.cjs",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} --require test/test-mocha.js test/*.spec.js",
"coverage": "cross-env NODE_ENV=test c8 npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly --reporter=text-summary --reporter=text npm run test-node",
"coverage-report": "c8 report",
"lint": "eslint ."
},
"c8": {
"reporter": [
"lcov",
"text-summary",
"text"
]
}
}