-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.28 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "uzdu",
"version": "0.0.0-dev",
"description": "Universal zipper, downloader and uploader - UZDU. Move files to/from zip, clouds (AWS, Azure), to HTTP PUT (e.g. Nexus) and to SSH",
"bin": {
"uzdu": "dist/uzdu.js"
},
"type": "module",
"main": "dist/uzdu.js",
"types": "dist/uzdu.d.ts",
"scripts": {
"build": "tsup-node",
"build:webpack": "webpack --config webpack.config.ts --mode production",
"test:help": "tsx src/uzdu.ts help",
"test:s3": "npm run test:metadata && ts-node src/uzdu.ts -d --aws my-bucket test/web",
"test:ssh": "tsx src/uzdu.ts upload ssh --target my.example.com:22 --targetKey ~/.ssh/id_ed25519 test/web /opt/youroute.app/web/",
"test:azure": "npm run test:metadata && ts-node src/uzdu.ts upload azure -d --azure -- test/web",
"test:http:upload": "tsx src/uzdu.ts upload http --dotenv --header \"Authorization: Basic TOKEN=\" website.zip https://nexus/repository/private-raw/dist/test-upload/website.zip",
"test:http:download": "tsx src/uzdu.ts download http --dotenv --header \"Authorization: Basic TOKEN=\" https://nexus/repository/private-raw/dist/test-upload/website.zip website.zip",
"test:zip": "ts-node src/uzdu.ts zip test/web website.zip",
"test:dist": "npm run test:zip && npm run test:http:upload",
"test:metadata": "tsx src/uzdu.ts metadata test/website",
"test": "ts-mocha -p test/tsconfig.json",
"_test": "ts-mocha",
"test:publish": "clean-publish --before-script ./releng/timestamped-version.mjs --temp-dir publish-temp",
"test:publish-dry": "clean-publish --before-script ./releng/timestamped-version.mjs --temp-dir publish-temp --without-publish",
"test:pack": "clean-publish --temp-dir publish-temp --without-publish",
"test:peeldist": "node ./releng/skim-dist.mjs --publishTempDir=tmpPublish",
"help": "ts-node src/uzdu.ts -h",
"ver": "ts-node src/uzdu.ts -V",
"ci:build": "npm run build",
"_version": "npm test",
"_prepack": "clean-publish",
"_postversion": "git push --tags origin master"
},
"keywords": [
"azure",
"aws",
"s3",
"blob",
"raw",
"nexus",
"upload",
"download",
"zip",
"unzip"
],
"author": {
"name": "Denis Kalinin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenrouter/uzdu.git"
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.9",
"@types/mocha-steps": "^1.3.3",
"@types/node": "^22.7.5",
"@types/ssh2": "^1.15.5",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"clean-publish": "^6.0.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"mocha-steps": "^1.3.0",
"ts-loader": "^9.5.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@aws-sdk/lib-storage": "^3.665.0",
"@azure/storage-blob": "^12.25.0",
"commander": "^12.1.0",
"deepmerge": "^4.3.1",
"jszip": "^3.10.1",
"mime-types": "^2.1.35",
"ssh2": "^1.17.0"
},
"files": [
"lib"
],
"engines": {
"node": ">=20"
},
"volta": {
"node": "24.11.1"
}
}