-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "node-laravel-router",
"version": "2.0.1",
"description": "A Laravel-inspired router for node.js apps",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha",
"test:coverage": "nyc npm test",
"commit": "git-cz",
"lint": "npx eslint lib test",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplymichael/node-laravel-router.git"
},
"keywords": ["express", "laravel", "node", "router", "routing-engine"],
"author": "simplymichael <simplymichaelorji@gmail.com> (https://github.com/simplymichael)",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplymichael/node-laravel-router/issues"
},
"homepage": "https://github.com/simplymichael/node-laravel-router#readme",
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.4.0",
"express": "^4.19.2",
"ghooks": "^2.0.4",
"lodash": "^4.17.21",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"supertest": "^7.0.0"
},
"dependencies": {
"qs": "^6.12.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test:coverage"
}
},
"engines": {
"node": ">=18.18.2",
"npm": ">=9.8.1"
}
}