-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "router-base",
"version": "1.1.0",
"engines": {
"node": ">=0.10"
},
"author": "Alexander Savin",
"main": "./lib/router-base.js",
"description": "javascript abstract, node.js and client-side router, inspired by symfony router",
"bugs": {
"url": "https://github.com/apsavin/router-base/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/apsavin/router-base.git"
},
"scripts": {
"test": "mocha test",
"coverage": "istanbul cover --report=html --dir=/tmp/router-base-coverage _mocha -- test/ && open /tmp/router-base-coverage/index.html",
"coveralls": "istanbul cover --format=lcovonly --dir=/tmp/router-base-coverage _mocha -- test/ && cat /tmp/router-base-coverage/lcov.info | coveralls"
},
"keywords": [
"router",
"routing",
"isomorphic",
"abstract",
"symfony"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.17",
"lodash.assign": "^3.2.0",
"lodash.clonedeep": "^2.4.1",
"mocha": "^2.3.3",
"mocha-oop-wrapper": "^1.1.0"
}
}