-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 925 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-mock-parser",
"version": "1.2.0",
"description": "use chance.js to parse definition schema to mock data",
"keywords": [
"swagger",
"mock",
"chance",
"parser"
],
"repository": {
"type": "git",
"url": "https://github.com/whq731/swagger-mock-parser"
},
"bugs": {
"url": "https://github.com/whq731/swagger-mock-parser/issues"
},
"main": "dist/Parser",
"scripts": {
"build": "rm -rf dist/ && babel src --out-dir dist",
"test": "nyc ava test/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "weihanqing",
"license": "MIT",
"dependencies": {
"chance": "~0.7.5",
"randexp": "^0.4.2"
},
"devDependencies": {
"ava": "^0.23.0",
"babel": "^5.6.14",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^3.0.0",
"nyc": "^11.2.1",
"swagger-jsblade-swagger-parser": "^4.0.0-beta.2"
}
}