-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1022 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
{
"name": "bak",
"version": "1.0.0",
"description": "Backup files and folders",
"main": "./lib/commands.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"bak": "./bin/bak.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garulovilla/bak.git"
},
"keywords": [
"backup",
"bak",
"sync"
],
"author": "Garu Lovilla",
"license": "ISC",
"bugs": {
"url": "https://github.com/garulovilla/bak/issues"
},
"homepage": "https://github.com/garulovilla/bak#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0"
},
"dependencies": {
"7zip-bin": "^5.2.0",
"adm-zip": "^0.4.16",
"chalk": "^4.1.2",
"commander": "^5.1.0",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3",
"node-7z": "^2.1.2"
}
}