forked from sole/node-zip-folder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 685 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 685 Bytes
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
{
"name": "zip-folder",
"version": "1.0.0",
"description": "zips a folder and calls your callback when it's done",
"main": "index.js",
"scripts": {
"test": "nodeunit tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bobinush/node-zip-folder"
},
"keywords": [
"zip",
"folder"
],
"author": "bobinush",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/bobinush/node-zip-folder/issues"
},
"homepage": "https://github.com/bobinush/node-zip-folder",
"dependencies": {
"archiver": "^0.11.0"
},
"devDependencies": {
"nodeunit": "^0.9.0",
"temporary": "0.0.8",
"unzip": "^0.1.11"
}
}