forked from jaredhanson/node-actionrouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "emvc-router",
"version": "0.2.0",
"description": "RESTful MVC router that dispatches to a controller and action",
"keywords": [
"emvc",
"locomotive",
"express",
"connect",
"router",
"mvc",
"model2"
],
"author": {
"name": "Nicholas Penree",
"email": "[email protected]",
"url": "http://www.penree.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/emvc/emvc-router.git"
},
"bugs": {
"url": "http://github.com/emvc/emvc-router/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"methods": "^1.1.2",
"i": "^0.3.5",
"utils-flatten": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"mocha": "^2.5.3"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"lint": "./node_modules/.bin/jshint lib/*.js",
"lint-tests": "./node_modules/.bin/jshint test/*.test.js",
"coverage": "DEBUG= ./node_modules/.bin/istanbul cover --dir ./reports/coverage _mocha -- --require ./test/bootstrap/node test/*.test.js test/**/*.test.js",
"view-coverage": "open ./reports/coverage/lcov-report/index.html",
"send-coverage": "cat ./reports/coverage/lcov.info | ./node_modules/.bin/coveralls",
"clean": "rm -rf build; rm -rf reports"
}
}