-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
{
"name": "s3-empty-bucket",
"version": "1.0.0-alpha.8",
"description": "Library and CLI to quickly empty AWS S3 buckets.",
"main": "dist/s3-empty-bucket.js",
"scripts": {
"build": "make",
"lint": "make lint",
"lint:fix": "make lint-fix",
"test": "make test",
"prepack": "make build",
"preversion": "npm test && make lint",
"qa": "make qa"
},
"bin": {
"s3-empty-bucket": "dist/s3-empty-bucket-cli-exec.js"
},
"files": [
"./dist/*"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"bucket",
"clean",
"empty",
"flush",
"s3",
"truncate"
],
"author": "Zane Rockenbaugh <[email protected]>",
"license": "Apache-2.0",
"repository": "git+ssh://[email protected]/liquid-labs/s3-empty-bucket.git",
"bugs": {
"url": "https://github.com/liquid-labs/s3-empty-bucket/issues"
},
"homepage": "https://github.com/liquid-labs/s3-empty-bucket#readme",
"devDependencies": {
"@liquid-labs/sdlc-resource-babel-and-rollup": "^1.0.0-alpha.8",
"@liquid-labs/sdlc-resource-eslint": "^1.0.0-alpha.11",
"@liquid-labs/sdlc-resource-jest": "^1.0.0-alpha.7",
"dmd-readme-api": "^1.0.0-beta.2",
"jsdoc-to-markdown": "^8.0.1",
"uuid": "^9.0.1"
},
"_comply": {
"orgKey": "@liquid-labs"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/credential-providers": "^3.525.0",
"command-line-args": "^5.2.1",
"command-line-documentation": "^1.0.0-alpha.3",
"command-line-usage": "^7.0.1"
}
}