-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 2.29 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
{
"name": "vc-data-model-2.0-test-suite",
"version": "2.0.0",
"description": "Test Suite for checking Verifiable Credentials Data Model 2.0 compliance.",
"main": "index.js",
"directories": {
"test": "tests"
},
"type": "module",
"scripts": {
"test": "mocha tests/ --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options abstract=\"$PWD/abstract.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/respecConfig.json\",suiteLog='./suite.log',templateData=\"$PWD/reports/index.json\",title=\"VC v2.0 Interoperability Report\" --timeout 15000 --preserve-symlinks",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/vc-data-model-2.0-test-suite.git"
},
"keywords": [
"test",
"w3c",
"verifiable credentials",
"vc"
],
"author": {
"name": "W3C Verifiable Credentials Working Group",
"email": "[email protected]",
"url": "https://www.w3.org/groups/wg/vc/"
},
"license": "(LicenseRef-w3c-3-clause-bsd-license-2008 OR LicenseRef-w3c-test-suite-license-2023)",
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/w3c/vc-data-model-2.0-test-suite/issues"
},
"homepage": "https://github.com/w3c/vc-data-model-2.0-test-suite#readme",
"dependencies": {
"@digitalbazaar/data-integrity": "^2.5.0",
"@digitalbazaar/data-integrity-context": "^2.0.1",
"@digitalbazaar/ed25519-multikey": "^1.0.1",
"@digitalbazaar/did-method-key": "^5.2.0",
"@digitalbazaar/ed25519-signature-2020": "^5.4.0",
"@digitalbazaar/ezcap": "^4.1.0",
"@digitalbazaar/eddsa-rdfc-2022-cryptosuite": "^1.1.0",
"@digitalbazaar/mocha-w3c-interop-reporter": "^1.5.0",
"@digitalbazaar/vc": "^7.0.0",
"bnid": "^3.0.0",
"chai": "^4.3.6",
"jsonld-signatures": "^11.3.0",
"klona": "^2.0.5",
"mocha": "^10.0.0",
"vc-test-suite-implementations": "github:w3c/vc-test-suite-implementations"
},
"devDependencies": {
"allure-commandline": "^2.30.0",
"allure-mocha": "^3.0.3",
"eslint": "^8.19.0",
"eslint-config-digitalbazaar": "^4.0.1",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-unicorn": "^43.0.0"
},
"mocha": {
"parallel": false,
"reporter": "allure-mocha",
"reporterOptions": {
"resultsDir": "allure-results"
}
}
}