forked from brigand/babel-plugin-flow-react-proptypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "babel-plugin-flow-react-proptypes",
"version": "3.0.0",
"description": "converts flow types to react proptypes",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src test",
"test": "npm run build && jest",
"build": "babel src/ --out-dir lib/ --ignore src/__tests__ --presets es2015,stage-1,react",
"predeploy": "npm run build && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brigand/babel-plugin-flow-react-proptypes.git"
},
"keywords": [
"react",
"flow",
"flowtype",
"proptypes",
"babel",
"babel-plugin",
"es6"
],
"author": "Frankie Bagnardi <f.bagnardi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brigand/babel-plugin-flow-react-proptypes/issues"
},
"homepage": "https://github.com/brigand/babel-plugin-flow-react-proptypes#readme",
"files": [
"lib/*.js"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.2",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"jest": "^17.0.3",
"react": "^15.5.4",
"react-test-renderer": "^15.5.4"
},
"dependencies": {
"babel-template": "^6.16.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0",
"babel-core": "^6.18.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}