-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "express-recursive-routes",
"version": "0.0.0-development",
"description": "Recursively configure Express.js routes in a folder",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/megadix/express-recursive-routes.git"
},
"author": "Dimitri De Franciscis <[email protected]> (https://www.megadix.it/)",
"license": "MIT",
"keywords": [
"express",
"node",
"routing",
"controller"
],
"homepage": "https://github.com/megadix/express-recursive-routes",
"bugs": {
"url": "https://github.com/megadix/express-recursive-routes/issues"
},
"files": [
"src/",
"README.md"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"express": "^4.16.4",
"lodash": "^4.17.20",
"mocha": "^8.2.0",
"mock-fs": "^4.13.0",
"proxyquire": "^2.1.0",
"semantic-release": "^17.3.0",
"sinon": "^9.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
}
}