This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
72 lines (72 loc) · 1.83 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
{
"name": "codemod-proptypes-to-flow",
"version": "0.0.1",
"description": "A codemod to use Flowtype instead of React.PropTypes",
"main": "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]>",
"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": "^6.18.0",
"babel-eslint": "^6.0.2",
"babel-jest": "^17.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.13.3",
"jest": "^19.0.2",
"jscodeshift": "^0.3.30",
"lint-staged": "^3.4.1",
"prettier": "^1.3.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"
}
}