-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "rubel-router",
"version": "1.5.0",
"keywords": [
"react",
"history-api",
"path-to-regexp",
"router"
],
"description": "The simple router for React.",
"main": "./lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "./node_modules/.bin/babel ./src --out-dir ./lib",
"refresh": "rm -rf node_modules/; npm install; npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmf-san/rubel-router.git"
},
"author": "bmf-san",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmf-san/rubel-router/issues"
},
"homepage": "https://github.com/bmf-san/rubel-router#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"path-to-regexp": "^2.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1"
}
}