-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.8 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
{
"name": "migratemanagedserver",
"version": "0.1.0",
"description": "Migrate sites like Wordpress between two servers with ssh access",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest --runInBand",
"testCi": "NODE_ENV=ci jest",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore ./src",
"cleanup": "mv downloads/Readme.md /tmp/ && rm -rf downloads && mkdir downloads && mv /tmp/Readme.md downloads/",
"migrateFiles": "ts-node src/cli/migrateFiles.ts",
"migrateDatabase": "ts-node src/cli/migrateDatabase.ts"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/lingvano/migrateManagedServer.git"
},
"keywords": [
"Nodejs",
"typescript",
"automation"
],
"author": "Matthias Fischer, Lingvano",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lingvano/migrateManagedServer/issues"
},
"homepage": "https://github.com/lingvano/migrateManagedServer#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.0",
"@types/ssh2": "^0.5.48",
"@types/tar": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"dotenv": "^10.0.0",
"node-ssh": "^12.0.0",
"tar": "^6.1.11",
"winston": "^3.3.3"
}
}