forked from Stuk/jszip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.25 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
{
"name": "@node-projects/jszip",
"version": "4.3.0",
"author": "jochen.kuehner@gmx.de",
"originalAuthor": "Stuart Knightley <stuart@stuartk.com>",
"description": "Create, read and edit ZIP files with JavaScript.",
"scripts": {
"test": "npm run test-node && npm run test-browser && tsc",
"test-node": "qunit --require ./test/helpers/test-utils.js --require ./test/helpers/node-test-utils.js test/asserts/",
"test-browser": "npm run build-browser && node test/run.js --test",
"benchmark": "npm run benchmark-node && npm run benchmark-browser",
"benchmark-node": "node test/benchmark/node.js",
"benchmark-browser": "npm run build-browser && node test/run.js --benchmark",
"lint": "eslint .",
"start": "web-dev-server --open",
"prepublishOnly": "npm run build",
"build": "npm run bundle",
"build-browser": "node scripts/build-browser.js",
"bundle": "esbuild ./lib/index.js --format=esm --minify --external:pako --platform=neutral --bundle --outfile=./lib/index-min.js"
},
"contributors": [
{
"name": "Franz Buchinger"
},
{
"name": "António Afonso"
},
{
"name": "David Duponchel"
},
{
"name": "yiminghe"
}
],
"type": "module",
"main": "./lib/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
}
},
"files": [
"lib",
"index.d.ts",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/node-projects/jszip.git"
},
"homepage": "https://github.com/node-projects/jszip#readme",
"bugs": {
"url": "https://github.com/node-projects/jszip/issues"
},
"keywords": [
"zip",
"deflate",
"inflate"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@web/dev-server": "^1.0.0",
"benchmark": "^2.1.4",
"esbuild": "^0.28.2",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"jszip-utils": "~0.1.0",
"playwright": "^1.63.0",
"qunit": "~2.26.0",
"tmp": "0.2.7",
"typescript": "^7.0.2"
},
"dependencies": {
"@types/node": "^26.5.1",
"pako": "^3.0.1"
},
"license": "(MIT OR GPL-3.0-or-later)",
"engines": {
"node": ">=22.0.0"
}
}