-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
59
60
61
62
63
64
65
66
67
68
{
"name": "routux",
"version": "0.3.0",
"description": "A fast and productive router to improve the UX (User eXperience) of any front-end application (supports middlewares, regex pattern, named routes, error handler, ...).",
"main": "./dist/routux.min.js",
"keywords": [
"router",
"route",
"front",
"url",
"ux"
],
"homepage": "https://github.com/Nicolab/routux",
"author": {
"name": "Nicolas Tallefourtane",
"url": "http://nicolab.net"
},
"license": {
"type": "MIT",
"url": "https://github.com/Nicolab/routux/blob/master/LICENSE"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Nicolab/routux/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git@github.com:Nicolab/routux.git"
},
"bugs": "https://github.com/Nicolab/routux/issues",
"scripts": {
"test": "gulp dist.build && gulp test.build && gulp test.all",
"build": "gulp dist.build && gulp test.build"
},
"devDependencies": {
"babel-cli": "6",
"babel-core": "6",
"babel-loader": "6",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"del": "^1.1.1",
"ejs-mate": "^2.2.0",
"event-stream": "^3.3.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.7.1",
"gulp-mocha": "^2.1.3",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.1",
"gulp-webpack": "^1.5.0",
"gulp-webserver": "^0.9.1",
"lazypipe": "^1.0.1",
"lodash": "^3.10.1",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.17",
"selenium-standalone": "^4.5.3",
"unit.js": "^2.0.0",
"webdriverio": "^3.1.0",
"webpack": "^1.12.1"
},
"dependencies": {
"path-to-regexp": "^1.2.1",
"qs": "^5.2.0"
}
}