-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
99 lines (99 loc) · 2.94 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@digitalbazaar/vc",
"version": "7.1.1-0",
"description": "Verifiable Credentials JavaScript library.",
"homepage": "https://github.com/digitalbazaar/vc",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"contributors": [
"Dave Longley <[email protected]>",
"David I. Lehn <[email protected]>",
"Dmitri Zagidulin <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/vc"
},
"bugs": {
"url": "https://github.com/digitalbazaar/vc/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib/**/*.js"
],
"dependencies": {
"@digitalbazaar/credentials-context": "^3.1.0",
"ed25519-signature-2018-context": "^1.1.0",
"jsonld": "^8.3.1",
"jsonld-signatures": "^11.2.1"
},
"devDependencies": {
"@digitalbazaar/bbs-2023-cryptosuite": "^1.2.0",
"@digitalbazaar/bls12-381-multikey": "^1.3.0",
"@digitalbazaar/credentials-examples-context": "^1.0.0",
"@digitalbazaar/data-integrity": "^2.2.0",
"@digitalbazaar/data-integrity-context": "^2.0.1",
"@digitalbazaar/ecdsa-multikey": "^1.7.0",
"@digitalbazaar/ecdsa-sd-2023-cryptosuite": "^3.2.1",
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@digitalbazaar/multikey-context": "^2.0.1",
"@digitalbazaar/odrl-context": "^1.0.0",
"c8": "^10.1.2",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"did-context": "^3.1.1",
"did-veres-one": "^16.0.0",
"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",
"klona": "^2.0.6",
"mocha": "^10.7.0",
"mocha-lcov-reporter": "^1.3.0",
"uuid": "^10.0.0",
"veres-one-context": "^12.0.0",
"webpack": "^5.93.0"
},
"c8": {
"reporter": [
"lcov",
"text-summary",
"text"
]
},
"engines": {
"node": ">=18"
},
"keywords": [
"JSON",
"Linked Data",
"JSON-LD",
"RDF",
"Semantic Web",
"Verifiable Claim",
"Credential"
],
"scripts": {
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 10000 test/*.spec.js",
"test-karma": "karma start karma.conf.cjs",
"lint": "eslint 'lib/**/*.js' 'test/**/*.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"
}
}