-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.4 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.4 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
{
"name": "@scality/cloudserverclient",
"version": "1.0.5",
"engines": {
"node": ">=20"
},
"description": "Smithy-generated TypeScript client for Cloudserver's internal APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"files": [
"dist",
"build/smithy/cloudserverBackbeatRoutes/typescript-codegen",
"build/smithy/cloudserverBucketQuota/typescript-codegen",
"build/smithy/cloudserverProxyBackbeatApis/typescript-codegen"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean:build": "rm -rf build dist",
"build:smithy": "smithy build",
"build:generated:backbeatRoutes": "cd build/smithy/cloudserverBackbeatRoutes/typescript-codegen && yarn install && yarn build",
"build:generated:bucketQuota": "cd build/smithy/cloudserverBucketQuota/typescript-codegen && yarn install && yarn build",
"build:generated:proxyBackbeatApis": "cd build/smithy/cloudserverProxyBackbeatApis/typescript-codegen && yarn install && yarn build",
"build:wrapper": "tsc",
"build": "yarn install && yarn clean:build && yarn build:smithy && yarn build:generated:backbeatRoutes && yarn build:generated:bucketQuota && yarn build:generated:proxyBackbeatApis && yarn build:wrapper",
"test": "jest",
"test:mongo-backend": "BACKEND_TYPE=mongo jest",
"test:metadata-backend": "BACKEND_TYPE=metadata jest",
"test:backbeat-apis": "BACKBEAT_SETUP=true yarn jest tests/testBackbeatProxyApis.test.ts",
"lint": "eslint src tests",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@scality/eslint-config-scality": "github:scality/Guidelines#8.3.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.49.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.896.0",
"JSONStream": "^1.3.5",
"fast-xml-parser": "^4.3.2"
},
"author": "Scality",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/scality/cloudserverclient.git"
}
}