-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (38 loc) · 927 Bytes
/
package.json
File metadata and controls
42 lines (38 loc) · 927 Bytes
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
{
"name": "gh-obs-helper",
"version": "1.2.0",
"description": "GitHub Action for Huawei Cloud OBS operations with unlimited file support and wildcard patterns",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "jest",
"dev": "npm run build && node dist/index.js",
"package": "npm run build"
},
"keywords": [
"github-action",
"huawei-cloud",
"obs",
"object-storage",
"upload",
"download"
],
"author": "diverger",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.1",
"esdk-obs-nodejs": "^3.25.6",
"glob": "^11.0.3",
"p-limit": "^6.2.0"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@vercel/ncc": "^0.38.1",
"jest": "^30.0.4",
"typescript": "^5.3.3"
},
"overrides": {
"glob": "^11.0.3"
}
}