forked from akapuya/s3-unzip-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.79 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
58
59
60
61
{
"name": "@20minutes/s3-unzip-plus",
"version": "1.1.3",
"description": "Utility for unzipping a compressed (application/zip) file from a S3 bucket's root directory back to the same bucket.",
"keywords": [
"s3",
"zip",
"archive",
"unzip"
],
"main": "lib/index.js",
"module": "esm/index.js",
"bin": {
"s3-unzip-plus": "bin/s3-unzip-plus"
},
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir lib",
"build:esm": "BABEL_ENV=esm babel src --out-dir esm",
"clean": "rimraf ./dist ./lib ./esm",
"build-and-test": "yarn clean && yarn build && yarn test",
"test": "jest --silent",
"test:watch": "jest --watch",
"lint": "eslint bin/s3-unzip-plus src/ tests/"
},
"repository": {
"type": "git",
"url": "https://github.com/20minutes/s3-unzip-plus.git"
},
"author": "Avi Kapuya",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.692.0",
"@aws-sdk/lib-storage": "^3.692.0",
"adm-zip": "^0.5.16",
"commander": "^12.1.0",
"md5": "^2.2.1",
"mime-types": "^2.1.16"
},
"devDependencies": {
"@20minutes/eslint-config": "^1.2.6",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"eslint": "8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.8"
}
}