-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "vc-json-schema-test-suite",
"version": "1.0.0",
"description": "W3C Verifiable Credential JSON Schema test suite.",
"homepage": "https://github.com/w3c/vc-json-schema-test-suite",
"author": {
"name": "W3C Verifiable Credentials Working Group",
"email": "[email protected]",
"url": "https://www.w3.org/groups/wg/vc/"
},
"main": "/tests",
"type": "module",
"directories": {
"tests": "tests"
},
"files": [
"implementations/*",
"tests/*.js"
],
"scripts": {
"test": "mocha tests/ --reporter @digitalbazaar/mocha-w3c-interop-reporter --reporter-options abstract=\"$PWD/abstract.hbs\",reportDir=\"$PWD/reports\",respec=\"$PWD/respecConfig.json\",title=\"VC JSON Schema Test Suite\",suiteLog='./reports/suite.log' --timeout 150000 --preserve-symlinks",
"lint": "eslint .",
"clean": "find tests/output -name \"*.json\" -type f -delete"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/vc-json-schema-test-suite.git"
},
"bugs": {
"url": "https://github.com/w3c/vc-json-schema-test-suite/issues"
},
"dependencies": {
"@digitalbazaar/mocha-w3c-interop-reporter": "^1.4.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"require-dir": "^1.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.33.2"
}
}