-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "upload-to-github-release",
"version": "1.6.0",
"description": "Github Action to deploy files to github release",
"main": "index.js",
"scripts": {
"dev": "tsc",
"build-cli": "ncc build src/index.ts -s -o dist",
"build": "node ncc-build.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xresloader/upload-to-github-release.git"
},
"keywords": [
"github",
"action",
"asset",
"release",
"upload",
"deploy"
],
"author": "owent",
"license": "MIT",
"bugs": {
"url": "https://github.com/xresloader/upload-to-github-release/issues"
},
"homepage": "https://github.com/xresloader/upload-to-github-release#readme",
"type": "module",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"globby": "^14.0.1",
"micromatch": "^4.0.5",
"mime": "^4.0.2",
"string-env-interpolation": "^1.0.1",
"type-fest": "^4.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"npm-check-updates": "^16.14.18"
}
}