forked from mzehrer/node-7z
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
73
74
75
{
"name": "node-7z-forall",
"version": "2.1.5",
"description": "A CommonJs and ESM frontend to 7-Zip, downloads binaries in for Linux, Windows, and Mac OSX, with methods to create SFX self extracting 7z archives targeting different platforms.",
"type": "commonjs",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./module": "./lib/esm/index.mjs"
},
"scripts": {
"test": "mocha --recursive test/ --timeout=0 --extension mjs --extension js",
"coverage": "npx nyc@latest --reporter json --reporter text mocha --recursive test/ --timeout=0 --extension mjs --extension js && npx codecov -f coverage/coverage-final.json",
"install": "node installer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/techno-express/node-7z-forall.git"
},
"keywords": [
"node",
"7z",
"7za",
"7zr",
"p7zip",
"7zip",
"sfx",
"binary",
"wrapper",
"Mac OS X",
"Windows",
"Linux",
"Apple",
"cross-platform"
],
"author": "Quentin Rossetti <[email protected]>",
"contributors": [
"HelloGravity",
"sketchpunk",
"Dannii Willis <[email protected]>",
"redx25 <[email protected]>",
"l. stubbs <[email protected]>",
"František Gič <[email protected]>",
"Oskar Larsson Högfeldt <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/techno-express/node-7z-forall/issues"
},
"homepage": "https://github.com/techno-express/node-7z-forall.git",
"files": [
"*.js",
"*.mjs",
"LICENSE",
"README.md",
"lib",
"util"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"all-unpacker": "^0.1.14",
"cross-spawn": "^7.0.3",
"fs-extra": "^9.1.0",
"macos-release": "^2.5.0",
"node-wget-fetch": "1.0.5",
"system-installer": "^1.1.6",
"when": "^3.7.8"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "9.1.2"
}
}