-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "onezip",
"version": "6.1.0",
"description": "pack and extract .zip archives with emitter",
"type": "commonjs",
"main": "./lib/onezip.js",
"exports": "./lib/onezip.js",
"bin": {
"onezip": "bin/onezip.mjs"
},
"scripts": {
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"test": "madrun test",
"coverage": "madrun coverage",
"report": "madrun report",
"watcher": "madrun watcher",
"watch:test": "madrun watch:test",
"watch:coverage": "madrun watch:coverage"
},
"dependencies": {
"currify": "^4.0.0",
"findit2": "^2.2.3",
"glob": "^10.3.10",
"pipe-io": "^4.0.0",
"try-to-catch": "^3.0.0",
"yargs-parser": "^21.1.1",
"yauzl": "^3.1.3",
"yazl": "^2.4.1"
},
"devDependencies": {
"@cloudcmd/stub": "^4.0.1",
"@iocmd/wait": "^2.1.0",
"@putout/eslint-flat": "^2.0.0",
"c8": "^9.1.0",
"eslint": "^9.0.0-alpha.2",
"eslint-plugin-putout": "^22.3.1",
"madrun": "^10.0.1",
"mock-require": "^3.0.2",
"nodemon": "^3.0.3",
"putout": "^35.0.1",
"rimraf": "^5.0.5",
"supertape": "^10.0.0",
"try-catch": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/coderaiser/node-onezip"
},
"keywords": [
"extract",
"zip",
"unzip",
"pack"
],
"author": "coderaiser <mnemonic.enemy@gmail.com> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderaiser/node-onezip/issues"
},
"homepage": "https://github.com/coderaiser/node-onezip"
}