-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "bestzip",
"version": "3.0.1",
"description": "Uses OS zip command if available (for better performance and speed) or node.js version if there is no system command available. Can be called via node or command line.",
"type": "module",
"exports": "./lib/bestzip.js",
"bin": {
"bestzip": "bin/cli.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"unit-test": "node --experimental-test-snapshots --test",
"update-snapshot": "npm run unit-test -- --test-update-snapshots",
"test": "npm run lint && npm run unit-test"
},
"author": "Nathan Friedly - http://nfriedly.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nfriedly/node-bestzip.git"
},
"homepage": "https://github.com/nfriedly/node-bestzip",
"files": [
"bin/cli.js",
"lib/"
],
"dependencies": {
"archiver": "^8.0.0",
"glob": "^13.0.6",
"which": "^6.0.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"command-line-test": "^1.0.10",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"klaw-sync": "^6.0.0",
"prettier": "^2.2.1",
"unzip-stream": "^0.3.1"
},
"packageManager": "npm@11.14.1"
}