This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "react-mini-router",
"version": "2.2.1",
"description": "A small url router for React apps.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dist": "npm run build && webpack -p --output-file=react-mini-router.min.js",
"test": "npm run test-client && npm run test-server",
"test-client": "karma start --single-run",
"test-server": "mocha test/server/**/*.test.js"
},
"author": "Larry Myers <[email protected]>",
"homepage": "https://github.com/larrymyers/react-mini-router",
"keywords": [
"react",
"router"
],
"repository": {
"type": "git",
"url": "https://github.com/larrymyers/react-mini-router"
},
"bugs": {
"url": "https://github.com/larrymyers/react-mini-router/issues"
},
"license": "MIT",
"peerDependencies": {
"react": ">=15.4.1",
"react-dom": ">=15.4.1"
},
"dependencies": {
"fbjs": "^0.3.2",
"path-to-regexp": "^1.0.1",
"urllite": "^0.5.0",
"prop-types": "^15.5.0"
},
"devDependencies": {
"cheerio": "^0.18.0",
"console-polyfill": "^0.2.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^0.1.7",
"karma-cli": "1.0.1",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sauce-launcher": "^0.2.10",
"karma-webpack": "^1.7.0",
"mocha": "^2.1.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"create-react-class": "^15.5.0",
"uglify-js": "^2.4.15",
"webpack": "^1.12.2"
}
}