-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.48 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
60
61
62
63
64
65
66
67
68
69
{
"name": "safe-backup",
"version": "1.4.8",
"description": "A real-time backup CLI tool written in Typescript. Safe Backup helps you sync file/folder into a single password encrypted storage. Using technology of RSA & AES.",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch"
},
"bin": {
"safe-backup": "./index.js"
},
"files": [
"/lib"
],
"pkg": {
"scripts": [
"./lib/*.js",
"./index.js"
],
"assets": "./package.json"
},
"preferGlobal": true,
"engines": {
"node": ">=11.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrwdrv/safe-backup.git"
},
"keywords": [
"backup",
"sync",
"password",
"aes",
"rsa",
"archive",
"encrypt",
"decrypt",
"cli",
"tool",
"typescript",
"bua"
],
"author": "scrwdrv",
"license": "MIT",
"bugs": {
"url": "https://github.com/scrwdrv/safe-backup/issues"
},
"homepage": "https://github.com/scrwdrv/safe-backup#readme",
"dependencies": {
"addcolor": "^1.0.6",
"appdata-path": "^1.0.0",
"bua": "^1.0.8",
"cli-params": "^1.2.1",
"colorful-log": "^1.0.3",
"node-watch": "^0.6.3",
"physical-cores": "^1.0.2",
"recurdir": "^1.0.9",
"semver": "^7.1.2",
"simple-regex-toolkit": "^1.0.3",
"startup-update-check": "^1.0.2",
"worker-communication": "^1.0.8"
},
"devDependencies": {
"@types/node": "^13.7.0",
"@types/semver": "^6.2.1"
}
}