-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
72 lines (72 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "zip-a-folder",
"version": "3.1.8",
"description": "Zip/Tar a complete folder or a glob list into a zip/tgz file",
"author": "Marius Augenstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/maugenst/zip-a-folder/issues"
},
"homepage": "https://github.com/maugenst/zip-a-folder#readme",
"main": "dist/lib/cjs/ZipAFolder.js",
"module": "dist/lib/mjs/ZipAFolder.js",
"typings": "@typings/ZipAFolder.d.ts",
"typeRoots": [
"./@typings",
"./node_modules/@types/"
],
"files": [
"README.md",
"lib",
"dist",
"@typings"
],
"exports": {
"types": "./@typings/ZipAFolder.d.ts",
"import": "./dist/lib/mjs/ZipAFolder.js",
"require": "./dist/lib/cjs/ZipAFolder.js"
},
"scripts": {
"clean": "rimraf dist/",
"test": "jest --coverage --",
"build": "run-s clean lint build:mjs build:cjs fixup",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:mjs": "tsc -p tsconfig-mjs.json",
"build:dev": "tsc -p tsconfig-mjs.json --watch",
"fixup": "./fixup.sh",
"lint": "npx @biomejs/biome lint ./lib ./test --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maugenst/zip-a-folder.git"
},
"keywords": [
"zip",
"folder",
"async",
"promise"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/core": "^1.8.0",
"@swc/jest": "^0.2.37",
"@types/archiver": "^6.0.3",
"@types/glob": "^8.1.0",
"@types/is-glob": "^4.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"chokidar": "^4.0.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "5.6"
},
"dependencies": {
"archiver": "^7.0.1",
"glob": "^11.0.0",
"is-glob": "^4.0.3"
}
}