forked from cdimascio/express-openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "express-openapi-validator",
"version": "2.18.0",
"description": "Automatically validate API requests and responses with OpenAPI 3 and Express.",
"main": "dist/index.js",
"scripts": {
"compile": "rm -rf dist/ && tsc",
"test": "mocha -r source-map-support/register -r ts-node/register --recursive test/**/*.spec.ts",
"test:coverage": "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 <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^6.10.2",
"deasync": "^0.1.16",
"js-yaml": "^3.13.1",
"json-schema-ref-parser": "^7.1.2",
"lodash": "^4.17.15",
"lodash.merge": "^4.6.2",
"multer": "^1.4.2",
"ono": "^5.0.1",
"path-to-regexp": "^6.0.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/morgan": "^1.7.36",
"@types/multer": "^1.3.10",
"@types/node": "^12.12.5",
"@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",
"express": "^4.17.1",
"mocha": "^6.2.0",
"morgan": "^1.9.1",
"nodemon": "^2.0.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "0.5.14",
"supertest": "^4.0.2",
"ts-node": "^8.3.0",
"tsc": "^1.20150623.0",
"typescript": "^3.7.2"
}
}