forked from Stuk/jszip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@cantoo/jszip",
"version": "3.10.4",
"author": "Stuart Knightley <[email protected]>",
"description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip",
"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": "grunt build && node test/run.js --test",
"benchmark": "npm run benchmark-node && npm run benchmark-browser",
"benchmark-node": "node test/benchmark/node.js",
"benchmark-browser": "node test/run.js --benchmark",
"lint": "eslint .",
"build": "grunt",
"release": "npm run build && git add ./dist && git commit --amend --no-edit && release-it"
},
"contributors": [
{
"name": "Franz Buchinger"
},
{
"name": "António Afonso"
},
{
"name": "David Duponchel"
},
{
"name": "yiminghe"
},
{
"name": "Cantoo",
"url": "https://cantoo.fr"
}
],
"main": "./lib/index",
"browser": {
"./lib/index": "./dist/jszip.min.js",
"readable-stream": "./lib/readable-stream-browser.js"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cantoo-scribe/jszip.git"
},
"keywords": [
"zip",
"deflate",
"inflate"
],
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "~13.0.0",
"eslint": "^8.18.0",
"grunt": "~0.4.1",
"grunt-browserify": "~5.0.0",
"grunt-cli": "~1.1.0",
"grunt-contrib-uglify": "~4.0.1",
"http-server": "^13.0.2",
"jszip-utils": "~0.0.2",
"package-json-versionify": "1.0.2",
"playwright": "^1.15.2",
"qunit": "~2.9.2",
"release-it": "^15.10.3",
"tmp": "0.0.28",
"typescript": "^4.6.3"
},
"dependencies": {
"lie": "~3.3.0",
"pako": "~1.0.2",
"readable-stream": "~2.3.6",
"setimmediate": "^1.0.5"
},
"license": "(MIT OR GPL-3.0-or-later)"
}