forked from cdimascio/express-openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "express-openapi-validator",
"version": "3.9.4",
"description": "Automatically validate API requests and responses with OpenAPI 3 and Express.",
"main": "dist/index.js",
"scripts": {
"compile": "rm -rf dist/ && tsc",
"test": "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",
"coveralls": "cat coverage/lcov.info | coveralls -v",
"codacy": "cat coverage/lcov.info | codacy-coverage"
},
"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.0",
"content-type": "^1.0.4",
"js-yaml": "^3.13.1",
"json-schema-ref-parser": "^7.1.2",
"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.0.0",
"path-to-regexp": "^6.0.0"
},
"optionalDependencies": {
"deasync": "^0.1.16"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.17.0",
"@types/mocha": "^7.0.0",
"@types/morgan": "^1.7.36",
"@types/multer": "^1.3.10",
"@types/node": "^13.1.0",
"@types/supertest": "^2.0.8",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"cookie-parser": "^1.4.4",
"coveralls": "^3.0.5",
"deasync": "^0.1.16",
"express": "^4.17.1",
"mocha": "^7.0.1",
"morgan": "^1.9.1",
"nodemon": "^2.0.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"source-map-support": "0.5.14",
"supertest": "^4.0.2",
"ts-node": "^8.3.0",
"tsc": "^1.20150623.0",
"typescript": "^3.7.2"
}
}