-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "openapi2apigee",
"version": "1.3.0",
"description": "A tool that converts openapi yaml file to Apigee API Proxy Bundle",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/commands/config.js test/commands/*.js",
"coverage": "nyc _mocha -- test/util test/commands -R spec"
},
"bin": {
"openapi2apigee": "bin/openapi2apigee"
},
"repository": {
"type": "git",
"url": "https://github.com/apigee/openapi2apigee.git"
},
"keywords": [
"Apigee",
"OpenAPI",
"Swagger",
"Tool",
"API",
"Proxy",
"Proxies"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apigee/openapi2apigee/issues"
},
"homepage": "https://github.com/apigee/openapi2apigee",
"dependencies": {
"apigeetool": "0.16.4",
"async": "^2.1.2",
"commander": "^2.8.1",
"easy-zip": "0.0.4",
"inquirer": "1.2.3",
"lodash.assign": "4.2.0",
"lodash.omit": "4.5.0",
"mkdirp": "0.5.6",
"stream-from-array": "1.0.0",
"@apidevtools/swagger-parser": "10.1.0",
"xmlbuilder": "8.2.2"
},
"devDependencies": {
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"openapi-utils-param-to-schema": "0.0.8",
"openapi-utils-path-for-uri": "0.0.6",
"openapi-utils-schema-from-api": "0.0.4",
"policify": "0.0.12",
"rimraf": "^2.5.4",
"should": "^11.1.1",
"standard": "^17.0.0",
"uglify-js": "^2.7.4",
"xml2js": "^0.6.2",
"z-schema": "^5.0.5"
},
"standard": {
"globals": [
"should",
"describe",
"it"
],
"ignore": [
"./lib/resource_templates/jsc/bundle-policify.js",
"lib/resource_templates/jsc/bundle-policify.js"
]
}
}