-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "pingstatus-tls-v1",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com:kurtkanaskie/pingstatus-tls-v1.git"
},
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"apickli": "latest",
"apigeelint": "2.6.0",
"bluebird": "^3.3.5",
"chai": "^3",
"chai-fuzzy": "^1",
"cucumber": "^6",
"cucumber-pretty": "6.0.0",
"mocha": "^8.1.1",
"prettyjson": "^1",
"sinon": "^1"
},
"jshintConfig": {
"predef": [
"console",
"context"
],
"curly": true,
"eqeqeq": true,
"forin": true,
"undef": true,
"latedef": true,
"noempty": true,
"nonew": true,
"unused": true
},
"dependencies": {
"express": "^4.16.3"
},
"scripts": {
"apigeelint": "node ./node_modules/apigeelint/cli.js -s ./apiproxy -f table",
"unit": "node ./node_modules/mocha/bin/mocha test/unit",
"integration": "node ./node_modules/cucumber/bin/cucumber-js target/test/integration/features -f ./node_modules/cucumber-pretty"
}
}