-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "zip-local",
"version": "0.3.5",
"description": "very simple zipping/uzipping of local files and directories in node.js",
"main": "main.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./tests/*.test.js",
"pretest": "node ./tests/cleanup.js",
"posttest": "node ./tests/cleanup.js"
},
"directories": {
"lib": "libs",
"test": "tests"
},
"keywords": [
"zip",
"unzip",
"async",
"sync",
"compression",
"zip-local",
"jszip"
],
"author": "Mostafa Samir <[email protected]>",
"license": {
"type": "MIT",
"url": "https://github.com/Mostafa-Samir/zip-local/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/Mostafa-Samir/zip-local/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Mostafa-Samir/zip-local.git"
},
"dependencies": {
"async": "^1.4.2",
"graceful-fs": "^4.1.3",
"jszip": "^2.6.1",
"q": "^1.4.1"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^9.1.3",
"rimraf": "^2.4.3"
}
}