UNPKG

1.64 kBJSONView Raw
1{
2 "name": "@troveng/swagger-gen-js",
3 "version": "1.0.0",
4 "description": "Generates API modules, Flow types, JSON schema and more from Swagger specs",
5 "engines": {
6 "node": ">=6.6.0",
7 "npm": ">=3.10.8"
8 },
9 "main": "./lib/index.js",
10 "bin": {
11 "swagger-gen-js": "./lib/index.js"
12 },
13 "scripts": {
14 "test": "npm run eslint && npm run flow",
15 "eslint": "eslint --fix ./generators ./api/client.js ./utility",
16 "flow": "flow check",
17 "build": "babel ./generators --out-dir ./lib",
18 "prepublish": "npm run build && npm test"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/Trov/swagger-gen-js.git"
23 },
24 "author": "Trōv, Inc.",
25 "license": "UNLICENSED",
26 "bugs": {
27 "url": "https://github.com/Trov/swagger-gen-js/issues"
28 },
29 "homepage": "https://github.com/Trov/swagger-gen-js#readme",
30 "devDependencies": {
31 "babel-eslint": "7.1.1",
32 "babel-plugin-transform-flow-strip-types": "6.22.0",
33 "eslint": "3.19.0",
34 "eslint-config-airbnb": "14.1.0",
35 "eslint-config-airbnb-flow": "1.0.2",
36 "eslint-plugin-import": "2.2.0",
37 "eslint-plugin-jsx-a11y": "4.0.0",
38 "flow": "0.2.3",
39 "flow-bin": "0.40.0"
40 },
41 "dependencies": {
42 "babel-cli": "6.24.0",
43 "babel-plugin-react-transform": "2.0.2",
44 "babel-plugin-transform-flow-strip-types": "6.22.0",
45 "babel-preset-es2015": "6.22.0",
46 "babel-preset-react": "6.23.0",
47 "babel-preset-stage-0": "6.22.0",
48 "chalk": "1.1.3",
49 "glob": "7.1.1",
50 "lodash": "4.17.4",
51 "mkdirp": "0.5.1",
52 "pretty-error": "2.0.3",
53 "redux-actions": "0.12.0",
54 "yargs": "^7.0.2"
55 }
56}