forked from tanhauhau/inducer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "inducer",
"version": "0.3.2",
"description": "Inject Redux reducer with HOC",
"main": "build/index.js",
"files": [
"build"
],
"repository": "https://github.com/tanhauhau/inducer.git",
"author": "Tan Li Hau <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext js --fix",
"build": "babel --out-dir build src --ignore src/__tests__",
"precommit": "lint-staged",
"prepare": "npm run lint && npm run build"
},
"dependencies": {},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.10.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"react": "^16.0.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-redux": "^5.0.6"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix"
]
}
}
}