-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "exegesis-express",
"version": "0.0.0-semantic-release",
"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": "eslint -f stylish 'src/**/*.ts'",
"lint:tests": "eslint -f stylish 'test/**/*.ts'",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"src/**/*.ts": [
"eslint -f stylish --fix"
],
"test/**/*.ts": [
"eslint -f stylish --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/exegesis-js/exegesis-express.git"
},
"keywords": [
"express",
"OpenAPI",
"oas3",
"exegesis"
],
"author": {
"name": "Jason Walton",
"email": "[email protected]",
"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": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"express": "^4.16.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^10.2.0",
"nyc": "^15.0.1",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.2",
"semantic-release": "^19.0.5",
"supertest-fetch": "^1.2.4",
"ts-node": "^10.4.0",
"typescript": "^4.2.4"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"engines": {
"node": ">=6.0.0",
"npm": ">5.0.0"
}
}