-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"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 **/*.js",
"ipa-validation": "spectral lint ./openapi/v2.yaml --ruleset=./tools/spectral/ipa/ipa-spectral.yaml",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"__helpers__",
"metrics/data"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.744.0",
"@stoplight/spectral-cli": "^6.14.2",
"@stoplight/spectral-core": "^1.19.4",
"@stoplight/spectral-functions": "^1.9.3",
"@stoplight/spectral-ref-resolver": "^1.0.5",
"@stoplight/spectral-ruleset-bundler": "^1.6.1",
"apache-arrow": "^19.0.0",
"dotenv": "^16.4.7",
"eslint-plugin-jest": "^28.10.0",
"openapi-to-postmanv2": "4.25.0",
"parquet-wasm": "^0.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.8",
"@eslint/js": "^9.19.0",
"@jest/globals": "^29.7.0",
"@stoplight/types": "^14.1.1",
"aws-sdk-client-mock": "^4.1.0",
"babel-plugin-transform-import-meta": "^2.3.2",
"eslint": "^9.20.1",
"eslint-plugin-require-extensions": "^0.1.3",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "3.5.0"
}
}