forked from cdimascio/express-openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.58 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
{
"name": "express-openapi-validator",
"version": "4.3.1",
"description": "Automatically validate API requests and responses with OpenAPI 3 and Express.",
"main": "dist/index.js",
"scripts": {
"compile": "rm -rf dist/ && tsc",
"compile:windows": "rmdir dist /s /q & tsc",
"test": "TS_NODE_FILES=true mocha -r source-map-support/register -r ts-node/register --files --recursive test/**/*.spec.ts",
"test:debug": "TS_NODE_FILES=true mocha -r source-map-support/register -r ts-node/register --inspect-brk --files --recursive test/**/*.spec.ts",
"test:windows": "set TS_NODE_FILES=true & mocha -r source-map-support/register -r ts-node/register --files --recursive test/**/*.spec.ts",
"test:coverage": "TS_NODE_FILES=true nyc mocha -r source-map-support/register -r ts-node/register --recursive test/**/*.spec.ts",
"test:coverage:windows": "set TS_NODE_FILES=true & nyc mocha -r source-map-support/register -r ts-node/register --recursive test/**/*.spec.ts",
"coveralls": "cat coverage/lcov.info | coveralls -v",
"codacy": "cat coverage/lcov.info | codacy-coverage",
"test:reset": "rm -rf node_modules && npm i && npm run compile && npm t",
"commit": "cz"
},
"repository": {
"url": "https://github.com/cdimascio/express-openapi-validator"
},
"keywords": [
"openapi",
"openapi 3",
"expressjs",
"express",
"request validation",
"response validation",
"middleware",
"nodejs"
],
"author": "Carmine DiMascio <cdimascio@gmail.com>",
"license": "MIT",
"dependencies": {
"ajv": "^6.12.6",
"content-type": "^1.0.4",
"js-yaml": "^3.14.0",
"json-schema-ref-parser": "^9.0.6",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.uniq": "^4.5.0",
"lodash.zipobject": "^4.1.3",
"media-typer": "^1.1.0",
"multer": "^1.4.2",
"ono": "^7.1.3",
"path-to-regexp": "^6.2.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.4",
"@types/node": "^14.14.2",
"@types/supertest": "^2.0.10",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"commitizen": "^4.2.2",
"cookie-parser": "^1.4.5",
"coveralls": "^3.1.0",
"express": "^4.17.1",
"mocha": "^8.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"source-map-support": "0.5.19",
"supertest": "^5.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}