forked from Gamesight/slack-workflow-status
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "slack-workflow-status",
"description": "A Github Action for sending Workflow run results to Slack",
"version": "1.3.0",
"author": "Anthony Kinson",
"license": "MIT",
"main": "dist/index.js",
"private": false,
"bugs": {
"url": "https://github.com/Gamesight/slack-workflow-status/issues"
},
"homepage": "https://github.com/Gamesight/slack-workflow-status#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Gamesight/slack-workflow-status.git"
},
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"build": "ncc build src/main.ts",
"lint": "eslint src/main.ts",
"test": "jest"
},
"dependencies": {
"@actions/core": ">= 1.10.1",
"@actions/github": ">= 6.0.0",
"@slack/webhook": "^7.0.2"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.1",
"husky": "^9.0.11",
"js-yaml": "^4.1.0",
"prettier": "3.2.5",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && git add dist/"
}
}
}