-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "webhook-notifier",
"description": "GitHub Action to send messages to different webhooks",
"version": "1.0.0",
"private": false,
"keywords": [
"actions",
"webhook",
"notifier",
"notification",
"node",
"discord",
"teams",
"slack"
],
"homepage": "https://github.com/Netail/webhook-notifier#readme",
"license": "MIT",
"author": "Netail",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Netail/webhook-notifier.git"
},
"scripts": {
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"build": "tsc",
"build:dist": "yarn build && ncc build -o dist --source-map",
"precommit": "yarn format && yarn lint && yarn build:dist"
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/parser": "^6.20.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.2.5",
"typescript": "^5.3.3"
}
}