-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 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
{
"name": "7zip-min",
"version": "2.0.0",
"description": "Standalone cross-platform zip/unzip with 7za",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"release": "dotenv release-it --",
"preview": "release-it --dry-run",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onikienko/7zip-min.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"7z",
"7zip",
"7-zip",
"7za",
"compress",
"decompress",
"extract",
"lzma",
"zip",
"gzip",
"bzip2",
"tar",
"pack",
"unpack"
],
"author": "Mykhailo Onikiienko <michael.onikienko@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onikienko/7zip-min/issues"
},
"homepage": "https://github.com/onikienko/7zip-min#readme",
"dependencies": {
"7zip-bin": "5.1.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.0",
"@types/fs-extra": "^11.0.4",
"ava": "^6.2.0",
"dotenv-cli": "^8.0.0",
"fs-extra": "^11.3.0",
"fsify": "^5.0.0",
"glob": "^11.0.1",
"release-it": "^18.1.1"
}
}