-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "swagger-testing",
"version": "0.0.0",
"description": "Automated REST API Testing Using SwaggerAPI",
"main": "build/index.js",
"scripts": {
"prebuild": "npm install",
"pretest": "npm install",
"build": "gulp",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apigee-127/swagger-testing.git"
},
"keywords": [
"Swagger",
"API",
"SwaggerAPI",
"Test"
],
"author": "Mohsen Azimi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apigee-127/swagger-testing/issues"
},
"homepage": "https://github.com/apigee-127/swagger-testing#readme",
"devDependencies": {
"chai": "^3.0.0",
"gulp": "^3.9.0",
"gulp-mocha": "^2.1.1",
"gulp-tsc": "^0.10.1",
"request": "^2.58.0",
"rewire": "^2.3.4",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0",
"swagger.d.ts": "0.0.2",
"typescript": "1.4.1"
},
"dependencies": {
"lodash": "^3.9.3",
"swagger-core-api": "apigee-127/swagger-core-api",
"z-schema": "^3.12.0"
}
}