forked from cdimascio/express-openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.61 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
{
"name": "express-openapi-validator",
"version": "3.16.11",
"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"
},
"repository": {
"url": "https://github.com/cdimascio/express-openapi-validator"
},
"keywords": [
"openapi",
"openapi 3",
"expressjs",
"express",
"request validation",
"response validation",
"middleware",
"nodejs"
],
"author": "Carmine DiMascio <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^6.12.3",
"content-type": "^1.0.4",
"js-yaml": "^3.14.0",
"json-schema-ref-parser": "^9.0.6",
"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.1.0"
},
"optionalDependencies": {
"deasync": "^0.1.20"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.7",
"@types/mocha": "^8.0.2",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.27",
"@types/supertest": "^2.0.10",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"cookie-parser": "^1.4.5",
"coveralls": "^3.1.0",
"deasync": "^0.1.20",
"express": "^4.17.1",
"mocha": "^8.1.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"source-map-support": "0.5.19",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tsc": "^1.20150623.0",
"typescript": "^3.9.7"
}
}