-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "rrrouter",
"version": "1.1.12",
"description": "React based router - simple, yet powerful router for React",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "babel src --out-dir lib --presets es2015,stage-0,react",
"clean": "rimraf lib",
"pub": "npm run clean && npm run build && npm version patch && npm publish && rm -rf lib && git push origin",
"start": "bisheng start"
},
"repository": {
"type": "git",
"url": "https://github.com/plandem/rrrouter.git"
},
"keywords": [
"react",
"router",
"routing",
"history",
"navigation",
"simple",
"powerful"
],
"author": "Andrey Gayvoronsky <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/plandem/rrrouter/issues"
},
"homepage": "https://github.com/plandem/rrrouter#readme",
"files": [
"lib",
"src",
"test"
],
"dependencies": {
"invariant": "2.x",
"lodash": "4.x",
"path-to-regexp": "1.7.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"bisheng": "^0.19.0",
"bisheng-plugin-description": "^0.1.1",
"bisheng-plugin-react": "^0.4.2",
"bisheng-plugin-toc": "^0.4.0",
"react-document-title": "^2.0.2",
"rimraf": "^2.5.4"
},
"peerDependencies": {
"react": "15.x",
"prop-types": "15.x"
}
}