forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.37 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.9.1",
"description": "A complete routing library for React.js",
"main": "./modules/index",
"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": {
"test": "scripts/test --browsers Firefox --single-run"
},
"authors": [
"Ryan Florence",
"Michael Jackson"
],
"license": "MIT",
"devDependencies": {
"browserify": "4.2.3",
"browserify-shim": "3.6.0",
"envify": "1.2.0",
"expect": "0.1.1",
"karma": "0.12.16",
"karma-browserify": "^0.2.1",
"karma-chrome-launcher": "0.1.4",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "0.1.3",
"karma-mocha": "0.1.3",
"mocha": "1.20.1",
"react": ">=0.11.0",
"reactify": "^0.14.0",
"rf-release": "0.3.2",
"uglify-js": "2.4.15"
},
"peerDependencies": {
"react": ">=0.11.0"
},
"dependencies": {
"events": "1.0.1",
"flux": "2.0.1",
"qs": "2.2.2",
"when": "3.4.6"
},
"tags": [
"react",
"router"
],
"keywords": [
"react",
"react-component",
"routing",
"route",
"routes",
"router"
],
"browserify-shim": {
"react": "global:React"
}
}