-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 907 Bytes
/
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
{
"name": "api_interceptor",
"version": "1.0.0",
"description": "A node based API interceptor that can be used to validate API specification an existing API.",
"main": "index.js",
"keywords": [
"proxy",
"api",
"interceptor",
"validator",
"specification"
],
"author": "Santanu Sahu <santanu.sahu@nutanix.com>",
"contributors": [
"Goutham Raj <goutham.raj@nutanix.com>"
],
"license": "MIT",
"repository": {
"type": "Github",
"url": "https://github.com/nutanix-saas-engineering/ntnx-api-validation-tool.git"
},
"scripts": {
"start": "node ."
},
"dependencies": {
"@apidevtools/swagger-parser": "10.0.2",
"dotenv": "10.0.0",
"http-proxy": "1.18.1",
"jsonschema": "1.4.0",
"lodash": "4.17.21",
"moment": "2.29.1",
"node-fetch": "2.6.1",
"swagger-parser": "10.0.2"
},
"engines": {
"node": ">=10.15.2"
}
}