-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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": "@neolution-ch/action-release-notifier",
"version": "1.4.0",
"description": "A GitHub Action to notify about new releases",
"homepage": "https://github.com/neolution-ch/action-release-notifier",
"bugs": {
"url": "https://github.com/neolution-ch/action-release-notifier/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/neolution-ch/action-release-notifier"
},
"license": "MIT",
"author": "Neolution",
"main": "dist/src/index.js",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt -o dist && shx sed -i \"s/\\x0D$//g\" ./dist/index.js",
"cli": "node -r ts-node/register src/index.ts",
"lint": "eslint src/**/*.ts --cache --max-warnings 0",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write ."
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@slack/web-api": "^6.7.2",
"slackify-markdown": "^4.3.1"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@types/node": "^18.11.6",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"release-it": "^15.10.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}