-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.59 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.59 KB
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": "inly",
"version": "5.0.1",
"type": "commonjs",
"description": "extract .zip, .gz, .bz2, .tar, .tar.gz, .tgz, .tbz2",
"main": "lib/inly.js",
"bin": {
"inly": "bin/inly.js"
},
"scripts": {
"lint": "madrun lint",
"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": {
"bizzy": "^3.0.0",
"glob": "^10.3.10",
"jaguar": "^6.0.0",
"onezip": "^6.0.2",
"pipe-io": "^4.0.0",
"through2": "^4.0.2",
"try-to-catch": "^3.0.0",
"unbzip2-stream": "^1.0.11",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-putout": "^22.3.1",
"madrun": "^10.0.1",
"nodemon": "^3.0.3",
"nyc": "^15.0.0",
"putout": "^35.0.1",
"supertape": "^10.0.0",
"try-catch": "^3.0.1"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/coderaiser/node-inly"
},
"keywords": [
"extract",
"zip",
"gzip",
"bzip2",
"tar",
"gz",
"bz2",
"tgz",
"tar.gz",
"tar.bz2",
"tbz2",
"unzip"
],
"author": "coderaiser <mnemonic.enemy@gmail.com> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderaiser/node-inly/issues"
},
"homepage": "https://github.com/coderaiser/node-inly",
"publishConfig": {
"access": "public"
}
}