2013-10-07 03:34:12 +02:00
|
|
|
{
|
|
|
|
|
"name": "jszip",
|
2022-08-02 15:48:27 -07:00
|
|
|
"version": "3.10.1",
|
2013-10-07 03:34:12 +02:00
|
|
|
"author": "Stuart Knightley <stuart@stuartk.com>",
|
2017-09-04 01:41:02 +00:00
|
|
|
"description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip",
|
2013-10-10 23:23:40 -07:00
|
|
|
"scripts": {
|
2022-04-04 17:42:18 -07:00
|
|
|
"test": "npm run test-node && npm run test-browser && tsc",
|
2019-07-02 18:36:08 -07:00
|
|
|
"test-node": "qunit --require ./test/helpers/test-utils.js --require ./test/helpers/node-test-utils.js test/asserts/",
|
2022-06-14 14:14:03 -07:00
|
|
|
"test-browser": "grunt build && node test/run.js --test",
|
2022-06-14 17:22:30 -07:00
|
|
|
"benchmark": "npm run benchmark-node && npm run benchmark-browser",
|
|
|
|
|
"benchmark-node": "node test/benchmark/node.js",
|
|
|
|
|
"benchmark-browser": "node test/run.js --benchmark",
|
2022-06-23 11:42:34 -07:00
|
|
|
"lint": "eslint ."
|
2013-10-10 23:23:40 -07:00
|
|
|
},
|
|
|
|
|
"contributors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Franz Buchinger"
|
2013-10-07 03:34:12 +02:00
|
|
|
},
|
2013-10-10 23:23:40 -07:00
|
|
|
{
|
|
|
|
|
"name": "António Afonso"
|
2013-10-07 03:34:12 +02:00
|
|
|
},
|
2013-10-10 23:23:40 -07:00
|
|
|
{
|
|
|
|
|
"name": "David Duponchel"
|
2013-10-07 03:34:12 +02:00
|
|
|
},
|
2013-10-10 23:23:40 -07:00
|
|
|
{
|
|
|
|
|
"name": "yiminghe"
|
2013-10-07 03:34:12 +02:00
|
|
|
}
|
|
|
|
|
],
|
2013-10-13 12:56:07 -04:00
|
|
|
"main": "./lib/index",
|
2016-08-05 22:43:18 +03:00
|
|
|
"browser": {
|
2022-04-04 17:19:35 -07:00
|
|
|
"./lib/index": "./dist/jszip.min.js",
|
|
|
|
|
"readable-stream": "./lib/readable-stream-browser.js"
|
2016-08-05 22:43:18 +03:00
|
|
|
},
|
2020-04-19 16:06:54 -07:00
|
|
|
"types": "./index.d.ts",
|
2013-10-07 03:34:12 +02:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Stuk/jszip.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"zip",
|
|
|
|
|
"deflate",
|
|
|
|
|
"inflate"
|
|
|
|
|
],
|
|
|
|
|
"devDependencies": {
|
2022-06-14 13:47:53 -07:00
|
|
|
"benchmark": "^2.1.4",
|
2019-07-02 15:27:19 -07:00
|
|
|
"browserify": "~13.0.0",
|
2022-06-23 11:42:34 -07:00
|
|
|
"eslint": "^8.18.0",
|
2013-10-10 23:35:35 -07:00
|
|
|
"grunt": "~0.4.1",
|
2019-07-02 15:27:19 -07:00
|
|
|
"grunt-browserify": "~5.0.0",
|
2016-03-28 20:05:00 +02:00
|
|
|
"grunt-cli": "~1.1.0",
|
2019-07-02 15:37:53 -07:00
|
|
|
"grunt-contrib-uglify": "~4.0.1",
|
2021-10-11 11:42:36 -07:00
|
|
|
"http-server": "^13.0.2",
|
2015-04-06 10:28:57 +02:00
|
|
|
"jszip-utils": "~0.0.2",
|
2017-11-07 19:30:32 +01:00
|
|
|
"package-json-versionify": "1.0.2",
|
2025-03-14 17:52:41 +01:00
|
|
|
"playwright": "^1.51.0",
|
2019-07-02 18:36:08 -07:00
|
|
|
"qunit": "~2.9.2",
|
2022-04-04 17:42:18 -07:00
|
|
|
"tmp": "0.0.28",
|
|
|
|
|
"typescript": "^4.6.3"
|
2013-10-07 03:34:12 +02:00
|
|
|
},
|
2015-04-05 21:43:51 +02:00
|
|
|
"dependencies": {
|
2018-07-01 20:43:15 -04:00
|
|
|
"lie": "~3.3.0",
|
2016-07-25 21:28:48 +02:00
|
|
|
"pako": "~1.0.2",
|
2018-07-01 20:43:15 -04:00
|
|
|
"readable-stream": "~2.3.6",
|
2020-07-21 11:11:29 +08:00
|
|
|
"setimmediate": "^1.0.5"
|
2013-10-31 08:15:26 -04:00
|
|
|
},
|
2021-04-07 12:12:09 +02:00
|
|
|
"license": "(MIT OR GPL-3.0-or-later)"
|
2013-10-07 03:34:12 +02:00
|
|
|
}
|