74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"name": "swagger-jsdoc",
|
|
"description": "Generates swagger doc based on JSDoc",
|
|
"version": "6.3.0",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node examples/app/app.js",
|
|
"lint": "eslint .",
|
|
"test:lint": "eslint .",
|
|
"test:js": "jest --verbose",
|
|
"test": "run-p test:* -cn"
|
|
},
|
|
"main": "index.js",
|
|
"bin": {
|
|
"swagger-jsdoc": "./bin/swagger-jsdoc.js"
|
|
},
|
|
"dependencies": {
|
|
"@apidevtools/swagger-parser": "^12.1.0",
|
|
"commander": "6.2.0",
|
|
"doctrine": "3.0.0",
|
|
"glob": "11.1.0",
|
|
"lodash.mergewith": "^4.6.2",
|
|
"yaml": "2.0.0-1"
|
|
},
|
|
"devDependencies": {
|
|
"body-parser": "^1.20.4",
|
|
"eslint": "8.57.1",
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
"eslint-config-prettier": "6.15.0",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-jest": "26.1.1",
|
|
"eslint-plugin-prettier": "3.1.4",
|
|
"eslint-webpack-plugin": "^4.0.1",
|
|
"express": "^4.22.1",
|
|
"husky": "7.0.4",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "10.5.2",
|
|
"npm-run-all2": "6.2.6",
|
|
"prettier": "2.2.0",
|
|
"supertest": "7.1.4"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/Surnet/swagger-jsdoc",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Surnet/swagger-jsdoc.git"
|
|
},
|
|
"keywords": [
|
|
"swagger",
|
|
"openapi",
|
|
"jsdoc"
|
|
],
|
|
"author": "https://github.com/Surnet/swagger-jsdoc/graphs/contributors",
|
|
"bugs": {
|
|
"url": "https://github.com/Surnet/swagger-jsdoc/issues"
|
|
},
|
|
"resolutions": {
|
|
"minimist": ">=1.2.3",
|
|
"strip-ansi": "^6.0.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json,md,yml,yaml}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|