-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "action-publish-release-drafts",
"version": "0.1.1",
"description": "A GitHub action to publish release drafts on GitHub",
"private": true,
"keywords": [
"actions",
"github"
],
"author": "Alexey <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@vercel/ncc": "^0.24.1",
"eslint": "^7.9.0",
"eslint-config-web-scrobbler": "^2.0.1",
"prettier": "^2.1.2",
"prettier-config-web-scrobbler": "^0.1.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"scripts": {
"build": "tsc",
"dist": "tsc && ncc build build/main.js",
"lint": "eslint --ext .ts src",
"version": "npm run build && git add dist"
},
"eslintConfig": {
"extends": "web-scrobbler/typescript"
},
"prettier": "prettier-config-web-scrobbler"
}