-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "express-route-list",
"version": "1.0.22",
"description": "List routes for Express Framework",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src",
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest run --coverage && jest-coverage-badges -o --output './docs'",
"lint": "npx eslint src --fix",
"check-types": "tsc --noemit",
"prepare": "husky install"
},
"keywords": [
"express",
"express3",
"express4",
"express5",
"routes",
"list",
"log",
"paths"
],
"repository": {
"type": "git",
"url": "https://github.com/joalisonpereira/express-route-list.git"
},
"bugs": {
"url": "https://github.com/joalisonpereira/express-route-list/issues"
},
"author": "joalisonpereira",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/prompts": "2.4.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@vitest/coverage-c8": "^0.28.4",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"express3": "npm:express@^3.13.0",
"express4": "npm:express@^4.17.0",
"express5": "npm:express@^5.0.0-alpha.8",
"husky": "^8.0.3",
"jest-coverage-badges": "^1.1.2",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"tsup": "^6.6.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
},
"dependencies": {
"chalk": "4.1.2",
"console-table-printer": "^2.11.1",
"node-exec-promise": "1.0.2"
}
}