-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.55 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
{
"name": "vc-di-bbs-test-suite",
"version": "1.0.0",
"description": "Test suite for the BBS Data Integrity cryptosuite",
"main": "/tests",
"type": "module",
"directories": {
"tests": "tests"
},
"scripts": {
"test": "mocha tests/ --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options abstract=\"$PWD/config/abstract.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/config/respec.json\",suiteLog='./suite.log',templateData=\"$PWD/reports/index.json\",title=\"Data Integrity BBS Interoperability Report 1.0\" --timeout 15000 --preserve-symlinks --timeout 30000",
"fetch-vc-di-test-vectors": "if [ ! -e tests/input/vc-di-bbs ]; then git clone --depth 1 https://github.com/w3c/vc-di-bbs.git tests/input/vc-di-bbs; fi",
"lint": "eslint .",
"postinstall": "npm run fetch-vc-di-test-vectors"
},
"license": "BSD-3-Clause",
"author": {
"name": "W3C Verifiable Credentials Working Group",
"email": "[email protected]",
"url": "https://www.w3.org/groups/wg/vc/"
},
"contributors": [
{
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
}
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c-ccg/vc-di-bbs-test-suite.git"
},
"bugs": {
"url": "https://github.com/w3c-ccg/vc-di-bbs-test-suite/issues"
},
"homepage": "https://github.com/w3c-ccg/vc-di-bbs-test-suite#readme",
"dependencies": {
"@digitalbazaar/bbs-2023-cryptosuite": "2.0.1",
"@digitalbazaar/bls12-381-multikey": "^2.1.0",
"@digitalbazaar/credentials-context": "^3.1.0",
"@digitalbazaar/data-integrity": "2.1.0",
"@digitalbazaar/data-integrity-context": "^2.0.1",
"@digitalbazaar/did-method-key": "^5.1.0",
"@digitalbazaar/http-client": "^4.0.0",
"@digitalbazaar/mocha-w3c-interop-reporter": "^1.6.0",
"@digitalbazaar/multikey-context": "^2.0.1",
"@digitalbazaar/vc": "^7.1.0",
"@digitalcredentials/did-context": "^1.0.0",
"base58-universal": "^2.0.0",
"base64url-universal": "^2.0.0",
"chai": "^4.3.7",
"data-integrity-test-suite-assertion": "github:w3c-ccg/data-integrity-test-suite-assertion",
"jsonld": "^8.3.2",
"jsonld-document-loader": "^2.2.0",
"mocha": "^10.2.0",
"uuid": "^9.0.0",
"vc-test-suite-implementations": "github:w3c/vc-test-suite-implementations"
},
"devDependencies": {
"eslint": "^8.52.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-unicorn": "^48.0.1"
}
}