SIGN IN SIGN UP
Stuk / jszip UNCLAIMED

Create, read and edit .zip files with Javascript

0 0 0 JavaScript
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",
"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 ."
},
"contributors": [
{
"name": "Franz Buchinger"
2013-10-07 03:34:12 +02:00
},
{
"name": "António Afonso"
2013-10-07 03:34:12 +02:00
},
{
"name": "David Duponchel"
2013-10-07 03:34:12 +02: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": {
"./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",
"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",
"jszip-utils": "~0.0.2",
"package-json-versionify": "1.0.2",
"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
},
"dependencies": {
"lie": "~3.3.0",
"pako": "~1.0.2",
"readable-stream": "~2.3.6",
2020-07-21 11:11:29 +08:00
"setimmediate": "^1.0.5"
},
"license": "(MIT OR GPL-3.0-or-later)"
2013-10-07 03:34:12 +02:00
}