-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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
{
"name": "pingstatus-v1",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com:kurtkanaskie/pingstatus-v1.git"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"apigeelint": "node ./node_modules/apigeelint/cli.js -s ./apiproxy --profile apigeex -f table",
"unit": "node ./node_modules/mocha/bin/mocha test/unit",
"integration": "node ./node_modules/@cucumber/cucumber/bin/cucumber-js target/test/integration/features --format @cucumber/pretty-formatter --publish-quiet"
},
"devDependencies": {
"@cucumber/cucumber": "^7.x",
"@cucumber/pretty-formatter": "^1.0.0",
"apickli": "^3.0.0",
"apigeelint": "^2.x",
"chai": "^4.3.4",
"chai-fuzzy": "^1.6.1",
"cucumber-pretty": "^6",
"mocha": "^9.1.3",
"sinon": "^12.0.1"
},
"jshintConfig": {
"predef": [
"console",
"context"
],
"curly": true,
"eqeqeq": true,
"forin": true,
"undef": true,
"latedef": true,
"noempty": true,
"nonew": true,
"unused": true
}
}