-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "webspace-backup",
"version": "0.1.1",
"description": "Easy backup script for webspaces",
"main": "index.js",
"scripts": {
"prestart": "tsc && cp src/config.json dist/config.json",
"start": "node dist/environments/app.dev.js",
"test": "node test.js",
"build": "sh ./build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julianpoemp/webspace-backup"
},
"keywords": [
"ftp-backup",
"webspace-backup"
],
"author": "Julian Poemp",
"license": "MIT",
"bugs": {
"url": "https://github.com/julianpoemp/webspace-backup/issues"
},
"homepage": "https://github.com/julianpoemp/webspace-backup#readme",
"dependencies": {
"archiver": "^3.1.1",
"archiver-zip-encryptable": "^1.0.7",
"basic-ftp": "^4.6.3",
"del": "^5.1.0",
"fs-extra": "^8.1.0",
"moment": "^2.29.1",
"node-ssh": "^7.0.1",
"os-locale": "^4.0.0",
"pkg": "^4.4.9",
"prompt": "^1.0.0",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"ssh2": "^0.8.9"
},
"devDependencies": {
"typescript": "^3.9.7"
}
}