-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.8 KB
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
70
{
"name": "deploydo",
"version": "3.0.2",
"description": "Deploy static files securely over SFTP, FTPS, or FTP",
"type": "module",
"main": "./src/index.js",
"exports": "./src/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test",
"test:rtk": "rtk test node --test",
"test:integration": "node --test test/integration/transfer.integration.test.js",
"test:integration:rtk": "rtk test node --test test/integration/transfer.integration.test.js",
"lint": "eslint .",
"lint:rtk": "rtk lint eslint .",
"check": "npm run lint && npm test",
"check:rtk": "rtk npm run lint && rtk npm run test",
"pack:check": "npm pack --dry-run",
"pack:check:rtk": "rtk npm pack --dry-run",
"integration:up": "docker compose -f docker-compose.integration.yml up -d",
"integration:up:rtk": "rtk docker compose -f docker-compose.integration.yml up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapientorius/deploydo.git"
},
"keywords": [
"ftp",
"ftps",
"sftp",
"ssh",
"deployment",
"deploy",
"server",
"copy",
"deploydo"
],
"author": "Alexander Zerling",
"license": "MIT",
"bin": {
"deploydo": "./bin/deploydo.js"
},
"bugs": {
"url": "https://github.com/sapientorius/deploydo/issues"
},
"homepage": "https://github.com/sapientorius/deploydo#readme",
"files": [
"bin",
"src",
"deploy.js",
"README.md",
"LICENSE",
"deploy.sample.conf.json",
"deploydo.config.sample.json"
],
"dependencies": {
"@napi-rs/keyring": "^1.3.0",
"basic-ftp": "^6.2.0",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"ssh2-sftp-client": "^12.1.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1"
}
}