-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "express-jsdoc-swagger",
"version": "1.8.1",
"description": "Swagger OpenAPI 3.x generator",
"main": "index.js",
"dependencies": {
"chalk": "^4.1.0",
"doctrine": "^3.0.0",
"express": "^4.17.3",
"glob": "^7.1.6",
"merge": "^2.1.1",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^8.0.3",
"jest": "^26.6.3"
},
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"test": "jest",
"lint": "./node_modules/.bin/eslint ."
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/brikev/express-jsdoc-swagger.git"
},
"keywords": [
"swagger",
"swagger-generator",
"express",
"jsdoc",
"node",
"docs",
"documentation",
"swagger-ui",
"OpenAPI"
],
"author": "BRIKEV (https://github.com/brikev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brikev/express-jsdoc-swagger/issues"
},
"homepage": "https://brikev.github.io/express-jsdoc-swagger-docs/#/"
}