-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
48 lines (46 loc) · 1.19 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": "react-router-active-component",
"version": "4.0.0",
"description": "Factory function for React components which are active for a particular react-router route",
"main": "lib/index.js",
"jsnext:main": "es6/index.js",
"files": [
"es6",
"lib"
],
"scripts": {
"build": "npm run lint && nwb build",
"lint": "eslint src tests demo/src",
"start": "nwb serve",
"test": "npm run build && nwb test",
"test:watch": "nwb test --server"
},
"dependencies": {},
"peerDependencies": {
"react": ">=0.14.0",
"react-router": "^2.4.0"
},
"devDependencies": {
"eslint-config-jonnybuchanan": "3.2.1",
"nwb": "0.11.0",
"react": "15.2.1",
"react-addons-test-utils": "15.2.1",
"react-dom": "15.2.1",
"react-router": "2.5.2",
"bootstrap": "3.3.6"
},
"author": "Jonny Buchanan <[email protected]>",
"homepage": "https://github.com/insin/react-router-active-component",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/insin/react-router-active-component.git"
},
"keywords": [
"react",
"react-router",
"active",
"component",
"react-higher-order-component"
]
}