-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "@mapbox/s3scan",
"version": "3.0.0",
"description": "Streaming operations on S3 objects",
"main": "index.js",
"engines": {
"node": "^22.0.0"
},
"scripts": {
"test": "eslint lib test index.js && tape test/*.test.js",
"test-integration": "tape test/integration/index.test.js",
"docs": "documentation build -f md > api.md"
},
"bin": {
"s3purge": "bin/s3purge.js",
"s3keys": "bin/s3keys.js",
"s3scan": "bin/s3scan.js"
},
"author": "Mapbox",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/s3scan.git"
},
"bugs": {
"url": "https://github.com/mapbox/s3scan/issues"
},
"homepage": "https://github.com/mapbox/s3scan#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.1001.0",
"@smithy/node-http-handler": "^4.1.0",
"minimist": "^1.2.8",
"parallel-stream": "^1.1.2",
"split": "^1.0.0"
},
"devDependencies": {
"d3-queue": "^3.0.7",
"documentation": "^14.0.2",
"eslint": "^8.52.0",
"tape": "^4.6.3",
"underscore": "^1.13.6"
}
}