File: //usr/local/lib/node_modules/firebase-tools/node_modules/exegesis-express/package.json
{
"name": "exegesis-express",
"version": "4.0.0",
"description": "Express middleware to handle OpenAPI 3.x.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && npm run lint && npm run test:unittest",
"precommit:test": "npm run build && lint-staged && npm run precommit:unittest",
"build": "tsc",
"clean": "rm -rf dist coverage",
"test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|js)'",
"precommit:unittest": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|js)'",
"lint": "npm run lint:source && npm run lint:tests",
"lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"src/**/*.ts": [
"tslint -c tslint.json -t stylish"
],
"test/**/*.ts": [
"tslint -c test/tslint.json -t stylish"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/exegesis-js/exegesis-express.git"
},
"keywords": [
"express",
"OpenAPI",
"oas3",
"exegesis"
],
"author": {
"name": "Jason Walton",
"email": "dev@lucid.thedreaming.org",
"url": "https://github.com/jwalton/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/exegesis-js/exegesis-express/issues"
},
"homepage": "https://github.com/exegesis-js/exegesis-express#readme",
"dependencies": {
"exegesis": "^4.1.0"
},
"devDependencies": {
"@jwalton/semantic-release-config": "^1.0.0",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"express": "^4.16.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"nyc": "^15.0.1",
"pretty-quick": "^3.1.2",
"semantic-release": "^18.0.1",
"supertest-fetch": "^1.2.4",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"engines": {
"node": ">=6.0.0",
"npm": ">5.0.0"
}
}