forked from mikhail-hatsilau/proptypes-to-flow-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "prop-type-to-flow-syntax-codemod",
"version": "1.0.0",
"description": "Codemod to tranform react proptypes to flow type annotation",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && babel src --out-dir dist",
"lint": "eslint **/*.js",
"precommit": "lint-staged && npm run test"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"author": "Mikhail Hatsilau",
"repository": {
"type": "git",
"url": "https://github.com/mikhail-hatsilau/proptypes-to-flow-codemod.git"
},
"bugs": {
"url": "https://github.com/mikhail-hatsilau/proptypes-to-flow-codemod/issues",
"email": "gatilov4@gmail.com"
},
"keywords": [
"jscodeshift",
"react",
"flow",
"codemod",
"PropTypes"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jscodeshift": "^0.3.32",
"lint-staged": "^4.2.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.4"
}
}