forked from jamiebuilds/react-loadable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "react-loadable",
"version": "3.2.2",
"description": "A higher order component for loading components with promises",
"main": "lib/index.js",
"author": "James Kyle <me@thejameskyle.com>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged --verbose",
"format": "prettier --write '{src,__tests__}/**/*.js'",
"flow": "flow",
"test": "jest",
"build": "babel src/ -d lib/",
"prepublish": "yarn build"
},
"dependencies": {
"babel-plugin-syntax-dynamic-import": "^6.18.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"flow-bin": "^0.41.0",
"husky": "^0.13.2",
"jest": "^19.0.2",
"lint-staged": "^3.3.1",
"prettier": "^0.22.0",
"react": "^15.4.2",
"react-test-renderer": "^15.4.2"
},
"peerDependencies": {
"react": "*"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}