-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "vc-api-issuer-test-suite",
"version": "0.1.0",
"description": "Test Suite for checking issuers.",
"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 API Issuer Interoperability Report 1.0\" --timeout 15000 --preserve-symlinks",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c-ccg/vc-api-issuer-test-suite.git"
},
"keywords": [
"test",
"vc",
"api"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/w3c-ccg/vc-api-issuer-test-suite/issues"
},
"homepage": "https://github.com/w3c-ccg/vc-api-issuer-test-suite#readme",
"dependencies": {
"@digitalbazaar/mocha-w3c-interop-reporter": "^1.5.0",
"chai": "^4.3.6",
"klona": "^2.0.5",
"mocha": "^10.0.0",
"uuid": "^8.3.2",
"vc-test-suite-implementations": "github:w3c-ccg/vc-test-suite-implementations"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-unicorn": "^49.0.0"
}
}