-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 942 Bytes
/
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
{
"name": "simple-archiver",
"version": "1.0.1",
"dependencies": {
"archiver": "^3.1.1",
"tar": "^5.0.5",
"unzipper": "github:kesarion/node-unzipper"
},
"devDependencies": {
"chai": "^4.2.0",
"dir-compare": "^2.0.1",
"mocha": "^7.0.1",
"shelljs": "^0.8.3"
},
"scripts": {
"test": "mocha test/index.spec.js"
},
"mocha": {
"bail": true
},
"main": "index.js",
"repository": "kesarion/simple-archiver",
"description": "Simple archiver for zip and tar formats that can handle multiple entries of files, directories, buffers, streams and strings",
"homepage": "https://github.com/kesarion/simple-archiver",
"icon": "",
"keywords": [
"zip",
"tar",
"file",
"directory",
"buffer",
"stream",
"string",
"archive",
"extract"
],
"author": {
"name": "Alexandru Sfirlogea",
"email": "[email protected]"
},
"license": "MIT"
}