-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.2 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
47
{
"name": "swagger-api-tester",
"version": "1.1.0",
"description": "Generates lightweight mocha smoke tests against HTTP APIs using swagger docs to inform validations.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test-all": "mocha --require co-mocha ./test/**/*.spec.js",
"test": "npm run lint && npm run test-all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diosmosis/swagger-api-tester.git"
},
"keywords": [
"swagger",
"mocha",
"smoke",
"test",
"REST",
"HTTP",
"API"
],
"author": "diosmosis",
"license": "MIT",
"bugs": {
"url": "https://github.com/diosmosis/swagger-api-tester/issues"
},
"homepage": "https://github.com/diosmosis/swagger-api-tester#readme",
"dependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.2",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"mocha": "^2.5.3",
"request-promise": "^3.0.0",
"swagger-model-validator": "^2.0.7",
"swagger-parser": "^4.0.0-beta.2",
"swagger-validate": "^0.1.7",
"valid-url": "^1.0.9"
},
"devDependencies": {
"js-yaml": "^3.6.1",
"nock": "^8.0.0"
}
}