-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "express-routemagic",
"version": "2.0.8",
"description": "A simple and fast, fire-and-forget module that all Nodejs+Express app should have, to automatically require all your express routes without bloating your code with `app.use('i/will/repeat/this', require('./i/will/repeat/this')`. 把 Express 路由图给自动化。",
"main": "index.js",
"scripts": {
"test": "mocha './test/' --recursive --exit",
"cover": "istanbul cover _mocha -- './test/' --recursive --exit",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calvintwr/express-routemagic.git"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"express",
"router",
"automatic",
"require",
"express route magic",
"express-routemagic",
"路由",
"路由图"
],
"author": "calvintwr",
"license": "MIT",
"bugs": {
"url": "https://github.com/calvintwr/express-routemagic/issues"
},
"homepage": "https://github.com/calvintwr/express-routemagic#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^7.1.2",
"mocha-lcov-reporter": "^1.3.0"
},
"files": [
"index.js",
"index.d.ts",
"lib"
]
}