forked from dwenegar/upload-release-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "upload-release-assets",
"version": "1.0.0",
"description": "Upload release assets to an existing GitHub Release",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwenegar/upload-release-assets"
},
"keywords": [
"github",
"actions",
"release"
],
"author": "Simone Livieri <simone.livieri@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwenegar/upload-release-assets/issues"
},
"homepage": "https://github.com/dwenegar/upload-release-assets#readme",
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.0",
"mime": "^2.4.6"
},
"devDependencies": {
"@types/node": "^16.10.7",
"@types/semver": "^7.3.3",
"@vercel/ncc": "^0.38.0",
"prettier": "^2.1.1",
"typescript": "^3.9.7",
"@types/mime": "^2.0.3"
}
}