forked from earldouglas/swagger-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 932 Bytes
/
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
{
"name": "swagger-test",
"version": "0.2.0",
"description": "Specification-driven REST API testing",
"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": {
"url-template": "2.0.4"
},
"devDependencies": {
"mocha": "2.1.0",
"chai": "1.10.0",
"istanbul": "0.3.5",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "2.11.2"
}
}