-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 909 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 909 Bytes
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
{
"name": "slack-notification",
"version": "2.0.0",
"private": true,
"description": "Slack notification for GitHub Actions",
"main": "lib/main.js",
"scripts": {
"build": "npx tsc",
"lint": "eslint .",
"package": "ncc build --source-map --license licenses.txt"
},
"author": "Yorick <yorick@ctrlalt.dev>",
"license": "MPL-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-github": "^4.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"js-yaml": "^4.1.0",
"typescript": "^4.9.5"
}
}