-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.18 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.18 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
{
"name": "mongodb-openapi",
"description": "MongoDB repository with OpenAPI specification",
"type": "module",
"scripts": {
"format": "npx prettier . --write",
"format-check": "npx prettier . --check",
"lint-js": "npx eslint .",
"gen-ipa-docs": "node tools/spectral/ipa/scripts/generateRulesetReadme.js",
"ipa-validation": "spectral lint ./openapi/.raw/v2.yaml --ruleset=./tools/spectral/ipa/ipa-spectral.yaml",
"ipa-filter-violations": "node tools/spectral/ipa/scripts/filter-ipa-violations.js",
"spectral-validation": "spectral lint ./openapi/.raw/v2.yaml --ruleset=./tools/spectral/.spectral.yaml",
"test": "jest",
"precommit": "husky"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"__helpers__",
"metrics/data"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1034.0",
"@stoplight/spectral-cli": "^6.15.1",
"@stoplight/spectral-core": "^1.22.0",
"@stoplight/spectral-functions": "^1.10.2",
"@stoplight/spectral-ref-resolver": "^1.0.5",
"@stoplight/spectral-ruleset-bundler": "^1.7.0",
"apache-arrow": "^21.1.0",
"dotenv": "^17.4.2",
"eslint-plugin-jest": "^29.15.2",
"inflection": "^3.0.2",
"markdown-table": "^3.0.4",
"openapi-to-postmanv2": "6.0.1",
"parquet-wasm": "^0.7.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.5",
"@stoplight/types": "^14.1.1",
"aws-sdk-client-mock": "^4.1.0",
"babel-jest": "^30.0.5",
"babel-plugin-transform-import-meta": "^2.3.3",
"brace-expansion": "5.0.5",
"eslint": "^10.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "3.8.2",
"@eslint/eslintrc": "3.3.5"
},
"engineStrict": false,
"engines": {
"node": ">=20.0.0"
}
}