-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "zip-lib",
"version": "1.0.5",
"description": "zip and unzip library for node",
"main": "lib/index.js",
"scripts": {
"compile": "rimraf ./lib && tsc -p ./src/tsconfig.json",
"release": "rimraf ./lib && tsc -p ./src/tsconfig.release.json",
"compile-test": "rimraf ./test/out && tsc -p ./test/src/tsconfig.json",
"test": "node ./test/src/before.js && mocha ./test/out --timeout 10000",
"pack": "npm run release && npm pack",
"publish": "npm run release && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/fpsqdb/zip-lib.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"zip",
"folder",
"unzip",
"archive",
"extract",
"promise",
"async"
],
"author": "fpsqdb",
"license": "MIT",
"dependencies": {
"yauzl": "^3.2.0",
"yazl": "^3.2.1"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^12.20.55",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^2.4.5",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}