sftp-push-sync 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sftp-push-sync",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "SFTP sync tool for Hugo projects (local to remote, with hash cache)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"release:patch": "npm run build:noop && npm version patch && git push && git push --tags && npm publish --access public",
|
|
11
11
|
"release:minor": "npm run build:noop && npm version minor && git push && git push --tags && npm publish --access public",
|
|
12
12
|
"release:major": "npm run build:noop && npm version major && git push && git push --tags && npm publish --access public",
|
|
13
|
-
"build:noop": "echo \"nothing to build\""
|
|
13
|
+
"build:noop": "echo \"nothing to build\"",
|
|
14
|
+
"ncu-me": "ncu -i --format group",
|
|
15
|
+
"tree": "tree -a -L 3 ./ > directory structure.txt"
|
|
14
16
|
},
|
|
15
17
|
"keywords": [
|
|
16
18
|
"hugo",
|
|
@@ -21,9 +23,9 @@
|
|
|
21
23
|
"author": "Carsten Nichte",
|
|
22
24
|
"license": "GPL-3.0-or-later",
|
|
23
25
|
"dependencies": {
|
|
24
|
-
"ssh2-sftp-client": "^
|
|
25
|
-
"minimatch": "^
|
|
26
|
-
"diff": "^
|
|
27
|
-
"picocolors": "^1.
|
|
26
|
+
"ssh2-sftp-client": "^12.0.1",
|
|
27
|
+
"minimatch": "^10.1.1",
|
|
28
|
+
"diff": "^8.0.2",
|
|
29
|
+
"picocolors": "^1.1.1"
|
|
28
30
|
}
|
|
29
31
|
}
|