-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
{
"name": "codemod-proptypes-to-flow",
"version": "1.1.0",
"description": "A codemod to use Flowtype instead of React.PropTypes",
"main": "lib/index.js",
"bin": {
"typemod": "lib/index.js"
},
"scripts": {
"build": "babel src --out-dir lib",
"check": "npm run lint:bail && npm run test:coverage",
"prepublishOnly": "npm run check && npm run build",
"precommit": "lint-staged",
"lint:bail": "eslint src __tests__",
"lint": "eslint src __tests__ --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billyvg/codemod-proptypes-to-flow.git"
},
"keywords": [
"codemod",
"react",
"flow",
"flowtype",
"jscodeshift"
],
"author": "Billy Vong <[email protected]>",
"maintainers": [
"Progyan Bhattacharya <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/billyvg/codemod-proptypes-to-flow/issues"
},
"homepage": "https://github.com/billyvg/codemod-proptypes-to-flow#readme",
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/preset-env": "7.7.1",
"babel-eslint": "8.2.3",
"babel-jest": "24.9.0",
"eslint": "6.6.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"husky": "3.1.0",
"jest": "24.9.0",
"jscodeshift": "0.6.4",
"lint-staged": "9.4.3",
"prettier": "1.19.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"npm run test --bail --findRelatedTests"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"json",
"text",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"testEnvironment": "node"
}
}