-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "bestzip",
"version": "2.2.1",
"description": "Uses OS zip command if avaliable (for better performance and speed) or node.js version if there is no system command avaliable. Can be called via node or command line.",
"main": "lib/bestzip.js",
"bin": {
"bestzip": "bin/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"unit-test": "jest",
"test": "npm run lint && npm run unit-test"
},
"author": "Nathan Friedly - http://nfriedly.com/",
"license": "MIT",
"repository": "[email protected]:nfriedly/node-bestzip.git",
"homepage": "https://github.com/nfriedly/node-bestzip",
"files": [
"bin/cli.js",
"lib/"
],
"dependencies": {
"archiver": "^5.3.0",
"async": "^3.2.0",
"glob": "^7.1.6",
"which": "^2.0.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"command-line-test": "^1.0.10",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^29.7.0",
"klaw-sync": "^6.0.0",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"unzip-stream": "^0.3.1"
}
}