-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "swagger-to-flowtype",
"version": "0.4.0",
"description": "Command line tool for generating flow types from swagger",
"main": "./dist/index.js",
"scripts": {
"init": "mkdirp dist",
"clean": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "npm run clean && npm run init",
"build": "babel ./src -d ./dist",
"prepublish": "npm run build",
"flow": "flow",
"prettier": "prettier --write {src,__{tests,mocks}__}/**/*.js"
},
"author": "yayoc <[email protected]> (http://yayoc.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yayoc/swagger-to-flowtype.git"
},
"bugs": {
"url": "https://github.com/yayoc/swagger-to-flowtype/issues"
},
"homepage": "https://github.com/yayoc/swagger-to-flowtype#readme",
"keywords": [
"flow",
"swagger"
],
"bin": {
"swagger-to-flowtype": "./dist/index.js"
},
"dependencies": {
"axios": "^0.21.1",
"camelize": "^1.0.0",
"commander": "^2.9.0",
"js-yaml": "^3.8.4",
"prettier": "^1.11.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.48.0",
"jest": "^20.0.4",
"rimraf": "^2.6.2"
},
"jest": {
"testRegex": "(/__tests__/[^__mocks__].*|(\\.|/)(test|spec))\\.jsx?$",
"collectCoverageFrom": [
"src/index.js"
],
"collectCoverage": true
}
}