forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "react-router",
"version": "0.12.0",
"description": "A complete routing library for React.js",
"main": "modules/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rackt/react-router.git"
},
"homepage": "https://github.com/rackt/react-router/blob/latest/README.md",
"bugs": "https://github.com/rackt/react-router/issues",
"directories": {
"example": "examples"
},
"scripts": {
"build": "NODE_ENV=production webpack modules/index.js dist/react-router.js",
"build-min": "NODE_ENV=production COMPRESS=1 webpack modules/index.js dist/react-router.min.js",
"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples",
"test": "jsxhint . && karma start"
},
"authors": [
"Ryan Florence",
"Michael Jackson"
],
"license": "MIT",
"devDependencies": {
"bundle-loader": "^0.5.2",
"events": "1.0.2",
"expect": "^1.1.0",
"jsx-loader": "^0.12.2",
"jsxhint": "^0.8.1",
"karma": "^0.12.28",
"karma-chrome-launcher": "^0.1.7",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.10",
"karma-sourcemap-loader": "^0.3.2",
"karma-webpack": "^1.3.1",
"mocha": "^2.0.1",
"react": "0.12.x",
"rf-release": "0.4.0",
"rx": "2.3.18",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.6"
},
"peerDependencies": {
"react": "0.12.x"
},
"dependencies": {
"qs": "2.3.3"
},
"tags": [
"react",
"router"
],
"keywords": [
"react",
"react-component",
"routing",
"route",
"routes",
"router"
]
}