-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.76 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.76 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
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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "opensearch_api_tools",
"version": "1.0.0",
"description": "Tools for OpenSearch API Repo",
"author": "opensearch-project",
"license": "Apache-2.0",
"scripts": {
"preprocessing": "ts-node tools/proto-convert/src/PreProcessing.ts",
"backward-compat": "ts-node tools/proto-convert/src/postprocessing/BackwardCompatibleWriter.ts",
"cleanup-unused": "ts-node tools/proto-convert/src/postprocessing/CleanupUnusedMessages.ts -i protos/schemas/common.proto",
"postprocessing": "npm run backward-compat && npm run cleanup-unused",
"postprocessing:dry-run": "npm run backward-compat -- --dry-run",
"test": "npx jest --no-watchman"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@commander-js/extra-typings": "^12.0.1",
"@cspell/eslint-plugin": "^8.9.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin": "^2.3.0",
"@types/cbor-js": "^0.1.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.3",
"@types/qs": "^6.9.15",
"@types/titlecase": "^1.1.2",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"ajv": "^8.18.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"aws4-axios": "^3.4.0",
"axios": "^1.13.5",
"axios-mock-adapter": "^2.1.0",
"cbor": "^9.0.2",
"commander": "^12.0.0",
"eslint": "^9.39.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^29.2.1",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-yml": "^1.14.0",
"fast-glob": "^3.3.2",
"globals": "^15.0.0",
"json-diff-ts": "^4.0.1",
"json-schema-to-typescript": "^15.0.4",
"lodash": "^4.17.23",
"lodash.isequal": "^4.5.0",
"mustache": "^4.2.0",
"protobufjs": "^6.11.4",
"qs": "^6.14.2",
"semver": "^7.6.0",
"smile-js": "^0.7.0",
"titlecase": "^1.1.3",
"tmp": "^0.2.4",
"ts-node": "^10.9.1",
"util": "^0.12.5",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash.isequal": "^4.5.8",
"@types/mustache": "^4.2.6",
"@types/semver": "^7.7.1",
"jest": "^29.7.0",
"proto-parser": "^0.0.9",
"ts-jest": "^29.3.0",
"typescript": "^5.8.2"
},
"overrides": {
"form-data": "4.0.4",
"junit": ">=4.13.2",
"@babel/helpers": ">=7.26.10",
"@babel/runtime": ">=7.26.10",
"brace-expansion": ">=4.0.1",
"minimist": ">=1.2.6",
"resolve": ">=1.22.2",
"js-yaml": ">=4.1.1",
"eslint": "^9.39.1",
"eslint-plugin-jest": "^29.2.1",
"@apidevtools/swagger-parser": "^12.1.0",
"json-schema-to-typescript": "^15.0.4",
"fast-xml-parser": ">=5.3.8"
}
}