-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
43 lines (43 loc) · 1.01 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": "swagger-test",
"version": "0.8.0",
"description": "Specification-driven REST API testing",
"bin": {
"swagger-test": "./swagger-test.js"
},
"main": "lib/swagger-test.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/earldouglas/swagger-test"
},
"keywords": [
"swagger",
"specification",
"spec",
"testing",
"test"
],
"author": "James Earl Douglas",
"license": "MIT",
"bugs": {
"url": "https://github.com/earldouglas/swagger-test/issues"
},
"homepage": "https://github.com/earldouglas/swagger-test",
"dependencies": {
"json-diff": "0.7.1",
"preq": "0.5.14",
"url-template": "2.0.8"
},
"devDependencies": {
"mocha": "9.1.3",
"chai": "4.3.4",
"istanbul": "0.4.5",
"mocha-lcov-reporter": "1.3.0",
"coveralls": "3.1.1"
}
}