forked from equinor/openapi-flattener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"devDependencies": {
"@types/json-schema-merge-allof": "^0.6.0",
"@types/minimist": "^1.2.1",
"@types/node": "^15.12.4",
"typescript": "4.3.4"
},
"scripts": {
"compile": "npx tsc"
},
"dependencies": {
"json-schema-merge-allof": "^0.8.1",
"@apidevtools/json-schema-ref-parser": "^9.1.0",
"minimist": "^1.2.5",
"node-yaml": "^4.0.1"
},
"name": "openapi-flattener",
"description": "Install: `npm install openapi-flattener --save -g`",
"version": "1.0.3",
"main": "index.js",
"engines": {
"node": ">=12.21.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anikitin/openapi-flattener.git"
},
"bin": {
"openapi-flattener": "./dist/flattener.js"
},
"files": [
"./dist/flattener.js"
],
"keywords": [
"OpenApi",
"flattener",
"derefence",
"merge",
"spec",
"schema"
],
"author": "Henri Siik",
"license": "MIT",
"bugs": {
"url": "https://github.com/anikitin/openapi-flattener/issues"
},
"homepage": "https://github.com/anikitin/openapi-flattener#readme"
}