forked from xresloader/upload-to-github-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "upload-to-github-release",
"version": "1.3.2",
"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",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"globby": "^11.0.3",
"micromatch": "^4.0.4",
"mime": "^2.5.2",
"string-env-interpolation": "^1.0.1",
"type-fest": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@zeit/ncc": "^0.22.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4",
"npm-check-updates": "^11.5.1"
}
}