-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "node-stream-zip",
"version": "1.16.0",
"description": "node.js library for reading and extraction of ZIP archives",
"keywords": [
"zip",
"archive",
"unzip",
"stream"
],
"homepage": "https://github.com/antelle/node-stream-zip",
"author": "Antelle <antelle.net@gmail.com> (https://github.com/antelle)",
"bugs": {
"email": "antelle.net@gmail.com",
"url": "https://github.com/antelle/node-stream-zip/issues"
},
"license": "MIT",
"files": [
"LICENSE",
"node_stream_zip.js",
"node_stream_zip.d.ts"
],
"scripts": {
"lint": "eslint node_stream_zip.js test/tests.js",
"check-types": "tsc node_stream_zip.d.ts",
"test": "nodeunit test/tests.js"
},
"main": "node_stream_zip.js",
"types": "node_stream_zip.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/antelle/node-stream-zip.git"
},
"engines": {
"node": ">=0.12.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"nodeunit": "^0.11.3",
"prettier": "^3.9.6",
"typescript": "^7.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/antelle"
}
}