forked from pwmckenna/swagger-models-to-react-proptypes
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "swagger-models-to-react-proptypes",
"version": "1.1.0",
"description": "CLI that generates React propType definitions from a swagger endpoint",
"main": "bin/index.js",
"bin": "bin/index.js",
"scripts": {
"fixtures": "./node_modules/node-static/bin/cli.js fixtures -p 1337 &",
"test": "npm run fixtures && npm run test-1.2 && npm run test-2.0",
"test-1.2": "./bin/index.js http://127.0.0.1:1337/fixture-v1.2.json",
"test-2.0": "./bin/index.js http://127.0.0.1:1337/petstore-v2.0.json"
},
"author": "Patrick Williams <pwmckenna@gmail.com>",
"license": "ISC",
"dependencies": {
"lodash": "^3.10.0",
"swagger-client": "^2.1.1"
},
"devDependencies": {
"node-static": "^0.7.7"
}
}