-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "restana-swagger-validator",
"version": "v1.0.0",
"description": "High performance Swagger/OpenAPI validator middleware for Restana",
"main": "src/index.js",
"scripts": {
"test": "npx nyc --check-coverage --lines 85 node ./node_modules/mocha/bin/mocha test/*.test.js",
"format": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/restana-swagger-validator.git"
},
"keywords": [
"swagger",
"openapi",
"restana",
"middleware",
"http"
],
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BackendStack21/restana-swagger-validator/issues"
},
"homepage": "https://github.com/BackendStack21/restana-swagger-validator#readme",
"dependencies": {
"api-schema-builder": "^2.0.11"
},
"files": [
"LICENSE",
"README.md",
"src/"
],
"devDependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"express": "^4.18.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"openapi-validator-middleware": "^3.2.6",
"restana": "^4.9.7"
}
}