-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1002 Bytes
/
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
{
"name": "archiver-cli",
"version": "0.1.0",
"description": "a command line interface for archiverjs",
"homepage": "https://github.com/archiverjs/archiver-cli",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/archiver-cli.git"
},
"bugs": {
"url": "https://github.com/archiverjs/archiver-cli/issues"
},
"license": "MIT",
"bin": {
"archiverjs": "cli.js"
},
"files": [
"cli.js"
],
"engines": {
"node": ">= 8"
},
"scripts": {
"test": "ava"
},
"dependencies": {
"archiver": "^3.1.0",
"get-stdin": "^7.0.0",
"globby": "^10.0.0",
"meow": "^5.0.0",
"ora": "^4.0.0"
},
"devDependencies": {
"ava": "^2.1.0",
"execa": "^3.4.0"
},
"keywords": [
"archive",
"archiver",
"stream",
"zip",
"tar",
"cli"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}