-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
99 lines (99 loc) · 2.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "api-flow",
"description": "A flow written in ES6 using Immutable to convert between API description formats (Swagger, etc.) and other programs such as cURL command lines.",
"keywords": [
"api",
"swagger",
"paw",
"curl",
"api blueprint",
"raml",
"grape"
],
"bin": {
"api-flow": "./bin/api-flow.js"
},
"version": "0.1.0",
"main": "./dist/node/api-flow.js",
"license": "MIT",
"homepage": "https://github.com/luckymarmot/API-Flow",
"dependencies": {
"argparse": "^1.0.7",
"babel-plugin-transform-flow-strip-types": "6.3.15",
"babel-polyfill": "6.3.14",
"babel-runtime": "6.3.19",
"drafter.js": "^2.6.6",
"immutable": "^3.8.1",
"js-yaml": "3.5.5",
"json-schema-faker": "^0.3.7",
"raml-1-parser": "^1.1.14",
"raml-parser": "0.8.16",
"request": "^2.72.0",
"swagger-schema-official": "2.0.0-bab6bed",
"tv4": "1.2.7"
},
"devDependencies": {
"babel-cli": "6.6.5",
"babel-core": "6.4.0",
"babel-eslint": "^6.1.2",
"babel-loader": "6.2.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-rewire": "1.0.0-beta-3",
"babel-plugin-transform-decorators": "6.3.13",
"babel-plugin-transform-decorators-legacy": "1.3.2",
"babel-plugin-transform-runtime": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-preset-stage-1": "6.3.13",
"babel-preset-stage-2": "6.3.13",
"babel-preset-stage-3": "6.3.13",
"babel-register": "6.3.13",
"chai": "3.4.1",
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"cross-env": "^4.0.0",
"diff": "^3.2.0",
"eslint": "^3.3.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-flowtype": "^2.29.1",
"expect": "^1.20.2",
"flow-bin": "^0.36.0",
"json-loader": "0.5.4",
"mocha": "2.3.4",
"nyc": "^10.2.0",
"seedrandom": "^2.4.2",
"uglify-js": "^2.7.5",
"uglifyjs-webpack-plugin": "^0.2.1",
"webpack": "2.x"
},
"eslintConfig": {
"extends": "./linting/prod.yaml"
},
"scripts": {
"compile": "./node_modules/babel-cli/bin/babel.js --ignore='**/__tests__/' -d lib/ src/",
"compile-node": "TARGET=node ./node_modules/webpack/bin/webpack.js",
"compile-web": "TARGET=web ./node_modules/webpack/bin/webpack.js",
"compile-worker": "TARGET=webworker ./node_modules/webpack/bin/webpack.js",
"test": "$npm_package_options_mocha \"src/**/__tests__/*.spec.js\"",
"validate": "node validate.js",
"lint": "./node_modules/eslint/bin/eslint.js -c linting/prod.yaml src/"
},
"options": {
"mocha": "./node_modules/.bin/mocha --require mocha --compilers js:babel-register --reporter spec"
},
"repository": {
"type": "git",
"url": "[email protected]:luckymarmot/API-Flow.git"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}