-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.61 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
{
"name": "vdl-test-suite",
"version": "0.0.1",
"description": "Test suite to demonstrate interoperability between various VC issuers & verifiers.",
"main": "index.js",
"scripts": {
"parallel": "npm run generate-vdls && mocha tests/ --require esm --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options body=\"$PWD/body.hbs\",matrix=\"$PWD/matrix.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/respecConfig.json\",title=\"Verifiable Driver's License Interoperability Report 1.0\",helpers=\"$PWD/templateHelpers.js\",suiteLog='./suite.log' --parallel --timeout 15000",
"test": "npm run generate-vdls && mocha tests/ --require esm --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options body=\"$PWD/body.hbs\",matrix=\"$PWD/matrix.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/respecConfig.json\",title=\"Verifiable Driver's License Interoperability Report 1.0\",helpers=\"$PWD/templateHelpers.js\",suiteLog='./suite.log' --timeout 15000",
"generate-vdls": "node generate-vdls.js",
"lint": "eslint *.js",
"postinstall": "cd bbs && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c-ccg/vdl-test-suite.git"
},
"keywords": [
"vDL",
"VC",
"jsonld",
"json-ld",
"linked data"
],
"author": {
"name": "W3C CCG",
"url": "https://w3c-ccg.github.io/"
},
"bugs": {
"url": "https://github.com/w3c-ccg/vdl-test-suite/issues"
},
"homepage": "https://github.com/w3c-ccg/vdl-test-suite#readme",
"dependencies": {
"@digitalbazaar/did-method-key": "^1.0.0",
"@digitalbazaar/ed25519-signature-2020": "^2.1.0",
"@digitalbazaar/ed25519-verification-key-2020": "^2.1.1",
"@digitalbazaar/http-client": "^1.0.0",
"@digitalbazaar/mocha-w3c-interop-reporter": "^1.0.0",
"@digitalbazaar/security-context": "^1.0.0",
"@digitalbazaar/vc": "^1.0.0",
"@digitalbazaar/vpqr": "^2.1.0",
"axios": "^0.21.1",
"chai": "^4.3.4",
"cit-context": "^2.0.0",
"credentials-context": "^1.0.0",
"csv-parse": "^4.15.3",
"did-context": "^3.0.1",
"ed25519-signature-2020-context": "^1.0.1",
"esm": "^3.2.25",
"file-size": "^1.0.0",
"jsonld-document-loader": "^1.1.0",
"mocha": "^8.3.2",
"node-cbor": "^5.0.4",
"require-dir": "^1.2.0",
"uuid": "^8.3.2",
"vc-revocation-list-context": "^1.0.0",
"vdl-context": "github:digitalbazaar/vdl-context",
"x25519-key-agreement-2020-context": "^1.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-digitalbazaar": "^2.6.1",
"eslint-plugin-jsdoc": "^32.3.0"
}
}