-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "express-openapi-validator",
"version": "5.3.9",
"description": "Automatically validate API requests and responses with OpenAPI 3 and Express.",
"main": "dist/index.js",
"scripts": {
"compile": "rimraf dist && tsc",
"compile:release": "rimraf dist && tsc --sourceMap false",
"test": "mocha -r source-map-support/register -r ts-node/register --files --recursive -R spec test/**/*.spec.ts",
"test:debug": "mocha -r source-map-support/register -r ts-node/register --inspect-brk --files --recursive test/**/*.spec.ts",
"test:coverage": "nyc mocha -r source-map-support/register -r ts-node/register --recursive test/**/*.spec.ts",
"test:reset": "rimraf node_modules && npm i && npm run compile && npm t",
"coveralls": "cat coverage/lcov.info | coveralls -v",
"codacy": "bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r coverage/lcov.info",
"commit": "cz"
},
"repository": {
"url": "https://github.com/cdimascio/express-openapi-validator"
},
"files": [
"/dist"
],
"keywords": [
"openapi",
"openapi 3",
"expressjs",
"express",
"request validation",
"response validation",
"middleware",
"nodejs"
],
"author": "Carmine DiMascio <[email protected]>",
"license": "MIT",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.0",
"@types/multer": "^1.4.12",
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"content-type": "^1.0.5",
"json-schema-traverse": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"media-typer": "^1.1.0",
"multer": "^1.4.5-lts.1",
"ono": "^7.1.3",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "4.17.21",
"@types/mocha": "^9.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"body-parser": "^1.19.2",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"cookie-parser": "^1.4.6",
"coveralls": "^3.1.1",
"express": "^4.21.1",
"mocha": "^9.2.2",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rimraf": "^5.0.5",
"source-map-support": "0.5.21",
"supertest": "^6.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"peerDependencies": {
"express": "*"
}
}