forked from guilleasz/RouteHook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "react-route-hook",
"version": "1.2.1",
"description": "A simple React Component for adding onEnter and onChange Hooks to the Route Component of react-router v4",
"main": "dist/",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js ./test/*.spec.jsx",
"build": "webpack",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"babel": {
"presets": [
"react",
"env",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guilleasz/RouteHook.git"
},
"keywords": [
"react",
"react-router",
"route",
"routes",
"hooks",
"hook",
"onEnter",
"onChange",
"onLeave"
],
"author": "Guille Aszyn",
"license": "ISC",
"bugs": {
"url": "https://github.com/guilleasz/RouteHook/issues"
},
"homepage": "https://github.com/guilleasz/RouteHook#readme",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jsdom": "^11.6.1",
"mocha": "^5.0.0",
"sinon": "^4.2.1",
"sinon-chai": "^2.14.0",
"webpack": "^3.10.0"
}
}