-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"author": {
"email": "[email protected]",
"name": "Adam Zielinski",
"url": "http://github.com/adamziel"
},
"bugs": {
"url": "https://github.com/adamziel/react-router-named-routes/issues"
},
"dependencies": {
"create-react-class": "^15.6.0"
},
"description": "Adds support for named routes to React-Router 1, 2, 3, and 4.",
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.1.1",
"babel-core": "^6.1.2",
"babel-plugin-transform-es2015-modules-umd": "^6.0.15",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-preset-stage-1": "^6.0.15",
"babel-preset-stage-2": "^6.0.15",
"babel-preset-stage-3": "^6.0.15",
"babel-runtime": "^6.0.14",
"chai": "^3.4.0",
"compare-versions": "^3.1.0",
"history": "^3.3.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"mocha-babel": "^3.0.0",
"mocha-loader": "^0.7.1",
"node-localstorage": "^0.6.0",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.2",
"react-dom": "^0.14.2",
"react-router": "^3.0.5",
"sessionstorage": "0.0.1"
},
"peerDependencies": {
"react": ">=0.14",
"react-router": ">=3"
},
"engines": {
"node": ">=0.4.2"
},
"homepage": "https://github.com/adamziel/react-router-named-routes/issues",
"license": "BSD-3-Clause AND MIT",
"main": "./build/index.js",
"name": "react-router-named-routes",
"optionalDependencies": {},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/adamziel/react-router-named-routes.git"
},
"scripts": {
"test": "mocha --require test/setup.js",
"test-browser": "echo 'open http://localhost:8080/webpack-dev-server/test'; webpack-dev-server 'mocha!./test/named-routes-test.js' --output-filename test.js",
"build": "node_modules/.bin/babel --presets react,es2015,stage-0,stage-1,stage-2,stage-3 lib/index.js --out-file build/index.js"
},
"version": "0.0.23"
}