-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "cra-generate",
"version": "3.0.2",
"description": "Scaffold react components",
"main": "index.js",
"repository": "rthor/cra-generate",
"author": "rthor",
"license": "MIT",
"bin": {
"cra-generate": "./index.js"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"chalk": "^1.1.3",
"change-case": "^3.0.0",
"commander": "^2.9.0",
"mkpath": "^1.0.0"
},
"lint-staged": {
"*.js": [
"prettier",
"git add"
]
},
"scripts": {
"build": "flow-remove-types src/ -d lib/",
"prepublish": "yarn run build",
"prettier": "prettier --parser \"flow\" --no-semi --trailing-comma es5 --write \"{{templates,src}/**/*.js,*.js}\"",
"precommit": "lint-staged",
"test": "jest"
},
"jest": {
"transform": {
"\\.js$": "../jest-transform"
},
"rootDir": "src"
},
"devDependencies": {
"flow-bin": "^0.46.0",
"flow-remove-types": "^1.2.1",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"prettier": "^1.3.1"
}
}