forked from svenstaro/upload-release-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
51
{
"name": "upload-release-action",
"version": "2.5.1",
"private": true,
"description": "Upload files to a GitHub release",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svestaro/upload-release-action.git"
},
"keywords": [
"actions",
"upload",
"release",
"assets",
"asset"
],
"author": "Sven-Hendrik Haase",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5",
"@lifeomic/attempt": "^3.0.3",
"glob": "^7"
},
"devDependencies": {
"@types/glob": "^7",
"@types/jest": "^29",
"@types/node": "^16",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.36.0",
"eslint": "^8",
"eslint-plugin-github": "^4.6",
"eslint-plugin-jest": "^27",
"jest": "^29",
"jest-circus": "^29",
"js-yaml": "^4",
"prettier": "^2.8",
"ts-jest": "^29",
"typescript": "^4"
}
}