forked from johnwbyrd/update-release
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "update-release",
"version": "1.0.0",
"description": "a smarter way to make fresh build assets continuously available, with Github actions",
"private": true,
"main": "./dist/main.js",
"scripts": {
"bundle": "webpack --mode production",
"test": "webpack --mode development",
"test-watch": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"keywords": [
"github",
"octokit",
"release",
"ci",
"build",
"actions",
"action"
],
"author": "Colin Pitrat",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"fancy-log": "^1.3.3",
"ts-loader": "^6.2.2",
"typescript": "^3.9.9",
"v8-compile-cache": "^2.3.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"yargs": "^16.2.0"
},
"dependencies": {
"@actions/core": "^1.2.1",
"@actions/github": "^2.0.1",
"@octokit/core": "^2.2.0",
"@octokit/plugin-retry": "^3.0.1",
"@octokit/plugin-throttling": "^3.1.0",
"@octokit/types": "^2.0.2",
"@types/mime-types": "^2.1.0",
"dotenv": "^8.2.0",
"mime-types": "^2.1.26"
}
}