-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "react-mini-router",
"version": "1.0.1",
"description": "A small url router for React apps.",
"main": "index.js",
"scripts": {
"build": "browserify -e index.js -s ReactMiniRouter > dist/react-mini-router.js",
"dist": "uglifyjs dist/react-mini-router.js > dist/react-mini-router.min.js",
"test": "karma start --single-run"
},
"author": "Larry Myers <[email protected]>",
"homepage": "https://github.com/larrymyers/react-mini-router",
"keywords": [
"react",
"router"
],
"bugs": {
"url": "https://github.com/larrymyers/react-mini-router/issues"
},
"license": "MIT",
"peerDependencies": {
"react": ">=0.12.0"
},
"dependencies": {
"path-to-regexp": "^1.0.1",
"urllite": "^0.5.0"
},
"devDependencies": {
"browserify": "^5.9.1",
"karma": "^0.12.21",
"karma-browserifast": "^0.7.0",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "0.0.4",
"karma-mocha": "^0.1.6",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^1.21.4",
"react": "^0.12.0",
"sinon": "^1.10.3",
"uglify-js": "^2.4.15"
}
}