-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
57
{
"name": "swagger-data-generator",
"version": "0.1.0-beta.7",
"description": "Generate mock data for a swagger document.",
"main": "index.js",
"scripts": {
"test": "ava",
"build": "./node_modules/.bin/babel ./index.js -d ./dist/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booknds/swagger-data-generator.git"
},
"keywords": [
"swagger",
"mock",
"data",
"generate",
"generator",
"openAPI"
],
"author": "Eric Henry Correia",
"license": "MIT",
"bugs": {
"url": "https://github.com/booknds/swagger-data-generator/issues"
},
"homepage": "https://github.com/booknds/swagger-data-generator#readme",
"dependencies": {
"argparse": "^1.0.9",
"json-schema-faker": "^0.3.1",
"lodash": "^4.11.1",
"swagger-parser": "^3.4.1"
},
"bin": {
"sdg": "./index.js"
},
"devDependencies": {
"ava": "^0.14.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"source": [
"**/*.{js,jsx}",
"!dist/**/*"
],
"failFast": true,
"tap": true
}
}