-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "simple-archiver-cli",
"version": "1.1.0",
"description": "very easy to use to zip and tar",
"main": "lib/index.js",
"bin": {
"node-zip": "./bin/zip.js",
"node-tar": "./bin/tar.js"
},
"files": [
"lib",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "node --trace-warnings scripts/dev.js",
"zip": "node-zip node_modules",
"tar": "node-tar node_modules",
"test": "jest",
"publish:npm": "yarn publish --registry https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/archiver-cli.git"
},
"keywords": [
"cli",
"tar",
"zip",
"archiver",
"compress"
],
"author": "sonofmagic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonofmagic/archiver-cli/issues"
},
"homepage": "https://github.com/sonofmagic/archiver-cli#readme",
"engines": {
"node": ">= 10"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^26.6.3"
},
"dependencies": {
"archiver": "^5.0.0",
"cli-progress": "^3.9.0",
"commander": "^7.2.0",
"klaw": "^3.0.0"
}
}