-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
76 lines (76 loc) · 1.75 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
70
71
72
73
74
75
76
{
"name": "openapi-format",
"version": "1.25.0",
"description": "Format an OpenAPI document by ordering, formatting and filtering fields.",
"keywords": [
"openapi",
"openapi3",
"format",
"sort",
"order",
"filter",
"convert",
"rename",
"case",
"generate",
"overlay",
"cli"
],
"homepage": "https://github.com/thim81/openapi-format#readme",
"bugs": "https://github.com/thim81/openapi-format/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/thim81/openapi-format.git"
},
"license": "MIT",
"author": "Tim Haselaars",
"main": "openapi-format.js",
"types": "types/openapi-format.d.ts",
"bin": {
"openapi-format": "bin/cli.js"
},
"scripts": {
"test": "jest --colors --verbose --reporters=default --collectCoverage --no-cache --maxWorkers=2",
"lint": "npx prettier --write '**/*.js'",
"release": "npx np --branch main"
},
"dependencies": {
"@stoplight/yaml": "^4.3.0",
"api-ref-bundler": "^0.4.3",
"case-anything": "2.1.10",
"commander": "^7.2.0",
"jsonpath-plus": "^10.2.0",
"neotraverse": "^0.6.18"
},
"devDependencies": {
"jest": "^29.7.0",
"openapi-types": "^12.1.3"
},
"engines": {
"node": ">=18"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"openapi-format.js",
"utils/casing.js",
"utils/convert.js",
"utils/file.js",
"utils/filtering.js",
"utils/logging.js",
"utils/overlay.js",
"utils/parseTpl.js",
"utils/sorting.js",
"utils/split.js",
"utils/types.js",
"defaultFilter.json",
"defaultSort.json",
"defaultSortComponents.json",
"types/openapi-format.d.ts",
"package-lock.json"
],
"directories": {
"test": "test"
}
}