-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
69
70
{
"name": "express-route-parser",
"version": "1.0.5",
"description": "An Express plugin that can list the path and route endpoints of an Express app.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --collectCoverage --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint-fix": "eslint -c .eslintrc.js --ext .ts src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nklisch/express-route-parser.git"
},
"funding": {
"type": "buyMeACoffee",
"url": "https://www.buymeacoffee.com/nklisch"
},
"keywords": [
"express",
"documentation",
"generator",
"plugin",
"parser",
"metadata",
"reflection",
"list",
"path",
"routes",
"log"
],
"author": "Nathan Klisch",
"license": "ISC",
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/nklisch/express-route-parser/issues"
},
"homepage": "https://github.com/nklisch/express-route-parser#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.30.1",
"express": "^4.18.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@types/express": "^4.x",
"express": "^4.x"
}
}