-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "react-router-hook",
"version": "0.7.1",
"description": "Universal data fetching and lifecycle management for react router with multiple components",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"lint": "$(npm bin)/eslint src",
"prepare": "npm run clean && npm run test && npm run build",
"test": "$(npm bin)/eslint src"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/kouhin/react-router-hook.git"
},
"keywords": [
"react",
"react-router",
"hook",
"async",
"fetch",
"react-component",
"reactjs"
],
"author": [
"Bin Hou <[email protected]> (https://twitter.com/houbin217jz)"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-deps": "^16.1.0",
"eslint-plugin-babel": "^5.3.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"eventemitter3": "^3.1.0",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"uuid": "^3.3.2"
}
}