forked from maugenst/zip-a-folder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "zip-a-folder",
"version": "1.1.0",
"description": "Zip/Tar a complete folder into a zip/tgz file",
"main": "dist/lib/ZipAFolder.js",
"typings": "dist/lib/ZipAFolder.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest --coverage",
"build": "npm run clean && tsc && npm run lint",
"clean": "rimraf dist/",
"lint": "eslint . --ext .ts"
},
"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": {
"@types/archiver": "^5.1.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.4",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"coveralls": "^3.1.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"archiver": "^5.3.0"
}
}