-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "@wpmedia/slack-action",
"version": "1.1.2",
"description": "This GitHub action wraps the Slack [chat.postMessage](https://api.slack.com/methods/chat.postMessage) API method for posting to channels, private groups, and DMs. This action sends messages using [Slack bot tokens](https://api.slack.com/docs/token-types)",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run package && git add -u dist/"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/WPMedia/slack-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/WPMedia/slack-action/issues"
},
"homepage": "https://github.com/WPMedia/slack-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@slack/web-api": "^5.10.0",
"@zeit/ncc": "^0.22.3",
"jest": "^26.1.0"
},
"devDependencies": {
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.2.5"
}
}