-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.13 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": "web-router",
"version": "1.2.1",
"description": "Simple client-side router module with middlewares, route groups and more.",
"main": "index.js",
"scripts": {
"test": "mocha test/web-router.js"
},
"files": [
"index.js",
"README.md",
"LICENSE.md",
"lib/web-router.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kvartborg/web-router.git"
},
"keywords": [
"router",
"react",
"route",
"groups",
"routing",
"middleware",
"routes",
"client",
"browser",
"web-router",
"client-side"
],
"author": [
{
"name": "Frederik Kvartborg Albertsen",
"url": "https://kvartborg.net"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kvartborg/web-router/issues"
},
"homepage": "https://kvartborg.net/articles/37/Web-router",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"mocha": "^2.3.4"
}
}