-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.35 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.35 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
{
"name": "s3-archive-stream",
"version": "1.0.8",
"description": "A NodeJS utility to stream-zip S3 objects into a single archive using Archiver and AWS SDK",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"watch": "tsc --watch",
"format": "npx --no-install @biomejs/biome format --write",
"format-check": "npx --no-install @biomejs/biome format",
"lint": "npx --no-install @biomejs/biome lint --fix",
"lint-check": "npx --no-install @biomejs/biome lint",
"fix": "npx --no-install @biomejs/biome check --formatter-enabled=true --linter-enabled=true --assist-enabled=true --write",
"fix-check": "npx --no-install @biomejs/biome check --formatter-enabled=true --linter-enabled=true --assist-enabled=true",
"test": "npx --no-install vitest --coverage",
"test:coverage": "npx --no-install vitest --coverage --coverage.reporter=json-summary && jq .total coverage/coverage-summary.json > ./coverage.json && rm -rf ./coverage",
"example-express": "npx tsx ./example/express.ts",
"example-file": "npx tsx ./example/file.ts",
"example-s3": "npx tsx ./example/s3.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ENPICOM/s3-archive-stream.git"
},
"author": "Bart Versteeg",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ENPICOM/s3-archive-stream/issues"
},
"homepage": "https://github.com/ENPICOM/s3-archive-stream#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.946.0",
"archiver": "^7.0.1"
},
"devDependencies": {
"@aws-sdk/lib-storage": "^3.946.0",
"@biomejs/biome": "2.2.4",
"@types/adm-zip": "^0.5.7",
"@types/archiver": "6.0.3",
"@types/express": "^5.0.6",
"@types/tar-stream": "^3.1.4",
"@vitest/coverage-v8": "^4.0.15",
"adm-zip": "^0.5.16",
"express": "^5.2.1",
"tar-stream": "^3.1.7",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"keywords": [
"aws",
"s3",
"stream",
"archive",
"zip",
"tar",
"express",
"upload",
"download",
"bucket"
]
}