-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "http-signatures-test-suite",
"version": "0.0.1",
"description": "This package contains standard tests for the W3C's http signatures working group.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"report": "mocha --require test/test-mocha.js --recursive test/latest -R ImplementationReporter > implementations/report.json",
"summary": "cd implementations && node generate.js",
"test": "mocha --require test/test-mocha.js --recursive test/latest",
"handlebars": "handlebars ./implementations/report-template.hbs -f ./implementations/report-template.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c-dvcg/http-signatures-test-suite.git"
},
"keywords": [
"w3c",
"http-signatures",
"test",
"suite"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"bugs": {
"url": "https://github.com/w3c-dvcg/http-signatures-test-suite/issues"
},
"homepage": "https://github.com/w3c-dvcg/http-signatures-test-suite#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-digitalbazaar": "^2.6.1",
"eslint-plugin-jsdoc": "^30.7.8",
"handlebars": "^4.1.2",
"mocha": "^6.1.4"
},
"engines": {
"node": ">8.12",
"npm": ">6.4"
}
}