forked from maugenst/zip-a-folder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "zip-a-folder",
"version": "0.0.13",
"description": "Forked the idea of @sole to zip a complete folder into a zip file but now using promises",
"main": "lib/zip-a-folder.js",
"typings": "zip-a-folder.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maugenst/zip-a-folder.git"
},
"keywords": [
"zip",
"folder",
"async",
"promise"
],
"author": "Marius Augenstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/maugenst/zip-a-folder/issues"
},
"homepage": "https://github.com/maugenst/zip-a-folder#readme",
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.11.0",
"coveralls": "^3.1.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^25.5.4",
"lodash": "^4.17.20",
"prettier": "^2.1.1"
},
"dependencies": {
"archiver": "^5.0.0"
}
}