-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.25 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
49
50
{
"name": "action-slack-notifier",
"version": "1.0.0",
"private": true,
"description": "Send notifications to Slack.",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-ecosystem/action-slack-notifier.git"
},
"keywords": [
"actions",
"github",
"slack",
"notification"
],
"author": "The Actions Ecosystem Authors",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"@octokit/rest": "^17.9.3",
"@slack/web-api": "^5.8.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@octokit/webhooks": "^7.4.0",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.10",
"@types/semver": "^7.1.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"jest-circus": "^24.9.0",
"js-yaml": "^3.13.1",
"prettier": "^2.0.5",
"ts-jest": "^24.2.0",
"typescript": "^3.9.5"
}
}