forked from svenstaro/upload-release-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "upload-release-action",
"version": "3.0.1",
"private": true,
"description": "Upload files to a GitHub release",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "yarn build && yarn format-check && yarn lint && yarn 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.1.1",
"@octokit/types": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.43.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.5",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}