-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 956 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
{
"name": "swagger-mock-api",
"version": "1.6.0",
"description": "Creates a connect middleware mock API from a Swagger 2.0 YAML file",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dzdrazil/swagger-mock-api"
},
"bugs": {
"url": "https://github.com/dzdrazil/swagger-mock-api/issues"
},
"scripts": {
"build": "babel --optional runtime src --out-dir dist",
"start": "cd demo && grunt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "dzdrazil",
"license": "MIT",
"dependencies": {
"babel-runtime": "^5.5.6",
"chance": "~0.7.5",
"hoek": "~2.14.0",
"randexp": "^0.4.2",
"routes": "~2.0.0",
"swagger-parser": "^3.4.1"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^3.1.19",
"babel-preset-es2015": "^6.9.0",
"eslint": "^0.24.0",
"grunt": "^0.4.5",
"grunt-contrib-connect": "^0.10.1"
}
}