forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-router",
"version": "1.0.0-rc3",
"description": "A complete routing library for React.js",
"main": "lib/index",
"repository": {
"type": "git",
"url": "https://github.com/rackt/react-router.git"
},
"homepage": "https://rackt.github.io/react-router/",
"bugs": "https://github.com/rackt/react-router/issues",
"scripts": {
"build": "babel ./modules -d lib --ignore '__tests__'",
"build-umd": "NODE_ENV=production webpack modules/index.js umd/ReactRouter.js",
"build-min": "NODE_ENV=production webpack -p modules/index.js umd/ReactRouter.min.js",
"lint": "eslint modules examples",
"start": "node examples/server.js",
"test": "npm run lint && karma start",
"postinstall": "node ./npm-scripts/postinstall.js"
},
"authors": [
"Ryan Florence",
"Michael Jackson"
],
"license": "MIT",
"dependencies": {
"invariant": "^2.0.0",
"warning": "^2.0.0"
},
"peerDependencies": {
"history": "^1.12.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.0.0",
"bundle-loader": "^0.5.2",
"css-loader": "^0.19.0",
"eslint": "1.4.0",
"eslint-plugin-react": "3.3.2",
"expect": "^1.12.0",
"express": "^4.13.3",
"express-urlrewrite": "^1.2.0",
"gzip-size": "^3.0.0",
"history": "^1.12.5",
"karma": "^0.13.8",
"karma-browserstack-launcher": "^0.1.4",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.0.1",
"pretty-bytes": "^2.0.1",
"qs": "^4.0.0",
"react": "0.14.0",
"react-addons-test-utils": "0.14.0",
"react-addons-css-transition-group": "^0.14.0",
"react-dom": "0.14.0",
"rf-changelog": "^0.4.0",
"style-loader": "^0.12.4",
"webpack": "^1.4.13",
"webpack-dev-middleware": "^1.2.0"
},
"tags": [
"react",
"router"
],
"keywords": [
"react",
"react-component",
"routing",
"route",
"routes",
"router"
]
}