forked from Stuk/jszip
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "jszip-sync",
"version": "3.2.1-sync",
"author": "Stuart Knightley <stuart@stuartk.com>",
"description": "Create, read and edit .zip files with Javascript, with sync capabilities, forked from http://stuartk.com/jszip",
"scripts": {
"test": "npm run test-node && npm run test-browser",
"test-node": "qunit-cli -c test/helpers/test-utils.js test/helpers/node-test-utils.js test/asserts/*.js",
"test-browser": "grunt build && grunt test",
"lint": "grunt jshint"
},
"contributors": [
{
"name": "Franz Buchinger"
},
{
"name": "António Afonso"
},
{
"name": "David Duponchel"
},
{
"name": "yiminghe"
},
{
"name": "Eric Vergnaud"
}
],
"main": "./lib/index",
"browser": {
"readable-stream": "./lib/readable-stream-browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ericvergnaud/jszip.git"
},
"keywords": [
"zip",
"deflate",
"inflate"
],
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~1.1.0",
"grunt-saucelabs": "8.6.2",
"grunt-contrib-connect": "1.0.0",
"jshint": "~2.9.1",
"browserify": "~13.0.0",
"grunt-browserify": "~5.0.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-qunit": "~1.2.0",
"grunt-contrib-uglify": "~1.0.0",
"phantomjs-prebuilt": "2.1.15",
"jszip-utils": "~0.0.2",
"package-json-versionify": "1.0.2",
"qunit-cli": "~0.2.0",
"qunitjs": "~1.23.0",
"tmp": "0.0.28"
},
"dependencies": {
"core-js": "~2.3.0",
"es6-promise": "~3.0.2",
"lie": "~3.1.0",
"lie": "~3.3.0",
"pako": "~1.0.2",
"readable-stream": "~2.3.6",
"set-immediate-shim": "~1.0.1"
},
"license": "(MIT OR GPL-3.0)"
}