-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "path-routify",
"version": "0.2.6",
"description": "Generates expressjs compatible routes reflective of a given directory structure",
"main": "index.js",
"scripts": {
"eslint": "eslint index.js 'lib/**/*.js'",
"test": "node_modules/.bin/mocha --reporter ${MOCHA_REPORTER-spec} index.tests.js 'lib/**/*.tests.js'",
"coverage": "node_modules/.bin/istanbul cover --dir ${CIRCLE_ARTIFACTS-coverage} node_modules/mocha/bin/_mocha -- index.tests.js 'lib/**/*.tests.js'"
},
"engines": {
"node": ">= 4.8.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukeulrich/path-routify.git"
},
"keywords": [
"express",
"routing"
],
"author": "Luke Ulrich <lukeulrich@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeulrich/path-routify/issues"
},
"homepage": "https://github.com/lukeulrich/path-routify#readme",
"devDependencies": {
"bunyan": "1.x",
"chai": "^4.x",
"express": "4.x",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-circleci-reporter": "0.0.2",
"mocha-junit-reporter": "^1.12.0",
"supertest": "^3.0.0"
},
"pperDependencies": {
"express": "4.x"
}
}