forked from EvanOxfeld/node-unzip
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.87 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "unzipper",
"version": "0.12.5",
"type": "module",
"main": "./index.cjs",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
}
},
"description": "Unzip cross-platform streaming API ",
"author": "Ziggy Jonsson <ziggy.jonsson.nyc@gmail.com>",
"contributors": [
{
"name": "Ziggy Jonsson",
"email": "ziggy.jonsson.nyc@gmail.com"
},
{
"name": "Evan Oxfeld",
"email": "eoxfeld@gmail.com"
},
{
"name": "Joe Ferner",
"email": "joe.ferner@nearinfinity.com"
},
{
"name": "Nikolay Kuchumov",
"email": "kuchumovn@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ZJONSSON/node-unzipper.git"
},
"license": "MIT",
"dependencies": {
"bluebird": "~3.7.2",
"duplexer2": "~0.1.4",
"fs-extra": "11.3.1",
"graceful-fs": "^4.2.2",
"node-int64": "^0.4.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1066.0",
"@babel/cli": "^7.29.7",
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/register": "^7.29.7",
"@eslint/js": "^9.2.0",
"aws-sdk": "^2.1636.0",
"cross-env": "^6.0.3",
"dirdiff": ">= 0.0.1 < 1",
"eslint": "^9.2.0",
"globals": "^15.2.0",
"iconv-lite": "^0.4.24",
"if-node-version": "^1.1.1",
"request": "^2.88.0",
"rimraf": "^3.0.2",
"stream-buffers": ">= 0.2.5 < 1",
"tap": "^16.3.10",
"temp": ">= 0.4.0 < 1"
},
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"zip",
"unzip",
"zlib",
"uncompress",
"archive",
"stream",
"extract"
],
"scripts": {
"build": "npm run clean-for-build && npm run build-commonjs",
"clean-for-build": "rimraf ./dist",
"build-commonjs-modules": "cross-env BABEL_ENV=commonjs babel ./lib --out-dir ./dist --source-maps",
"build-commonjs-package.json": "node scripts/create-commonjs-package-json.cjs",
"build-commonjs": "npm run build-commonjs-modules && npm run build-commonjs-package.json",
"test": "npm run test-node-above-10 && npm run test-node-10-or-below",
"test-node-above-10": "if-node-version \">10\" npm run test-esm",
"test-node-10-or-below": "if-node-version \"<=10\" npm run test-esm-transpiled",
"test-esm": "npx tap test/*.js --coverage-report=html --lines=90 --functions=85 --statements=90 --branches=80 --reporter=dot",
"test-esm-transpiled": "cross-env BABEL_ENV=commonjs npx tap --node-arg=-r --node-arg=@babel/register test/*.js --coverage-report=html --lines=90 --functions=85 --statements=90 --branches=79.47 --reporter=dot",
"test-commonjs": "npx tap test-commonjs/*.js --coverage-report=html --lines=90 --functions=85 --statements=90 --branches=80 --reporter=dot",
"prepublishOnly": "npm test && npm run build && npm run test-commonjs"
},
"engines": {
"node": ">=8.0.0"
}
}