forked from Stuk/jszip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "@foxglove/jszip",
"version": "3.10.1",
"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 ."
},
"contributors": [
{
"name": "Franz Buchinger"
},
{
"name": "António Afonso"
},
{
"name": "David Duponchel"
},
{
"name": "yiminghe"
}
],
"main": "./lib/index.js",
"browser": {
"readable-stream": "./lib/readable-stream-browser.js"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/jszip.git"
},
"keywords": [
"zip",
"deflate",
"inflate"
],
"devDependencies": {
"eslint": "^8.18.0",
"qunit": "~2.9.2",
"tmp": "0.0.28"
},
"dependencies": {
"pako": "~1.0.2",
"readable-stream": "~2.3.6"
},
"license": "(MIT OR GPL-3.0-or-later)"
}