-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "routerify",
"version": "0.3.0",
"description": "Opinionated router loader for Express-like applications",
"homepage": "https://github.com/NotNinja/routerify",
"bugs": {
"url": "https://github.com/NotNinja/routerify/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "[email protected]",
"url": "https://not.ninja"
},
"license": "MIT",
"keywords": [
"router",
"express",
"restify"
],
"repository": {
"type": "git",
"url": "https://github.com/NotNinja/routerify.git"
},
"dependencies": {
"glob": "^7.1.1",
"lodash.defaultsdeep": "^4.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-notninja": "^0.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"sinon": "^2.2.0"
},
"main": "src/routerify.js",
"scripts": {
"ci": "npm run test",
"report-coverage": "istanbul cover _mocha --report lcovonly -- -R spec \"test/**/*.spec.js\" && codecov",
"pretest": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"test": "istanbul cover _mocha -- -R list \"test/**/*.spec.js\"",
"posttest": "istanbul check-coverage"
},
"engines": {
"node": ">=6"
}
}