forked from Gamesight/slack-workflow-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "slack-workflow-status",
"description": "A Github Action for sending Workflow run results to Slack",
"version": "1.1.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": ">=12.22.7"
},
"scripts": {
"build": "ncc build src/main.ts",
"lint": "eslint src/main.ts",
"test": "jest"
},
"dependencies": {
"@actions/core": ">= 1.2.6",
"@actions/github": ">= 4.0.0",
"@slack/webhook": "^6.1.0"
},
"devDependencies": {
"@types/node": "^14.14.9",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.13.0",
"eslint-plugin-github": "^4.1.1",
"husky": "^7.0.4",
"js-yaml": "^3.14.0",
"prettier": "2.1.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && git add dist/"
}
}
}