forked from AlexanderWert/action-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 996 Bytes
/
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
{
"name": "action-slack",
"version": "2.0.0",
"description": "GitHub Action that sends a Slack notification.",
"private": true,
"type": "commonjs",
"main": "./entrypoint.js",
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"build": "ncc build ./entrypoint -m",
"start": "node -r dotenv/config ./entrypoint 'My message from {{GITHUB_REPOSITORY}}'",
"lint": "eslint --ext .js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ilshidur/actions.git"
},
"keywords": [
"slack",
"github",
"action"
],
"author": "Ilshidur",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ilshidur/actions/issues"
},
"homepage": "https://github.com/Ilshidur/actions#readme",
"dependencies": {
"@actions/core": "1.10.0",
"axios": "0.21.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@vercel/ncc": "0.28.2",
"dotenv": "8.2.0",
"eslint": "7.24.0",
"eslint-plugin-node": "11.1.0"
}
}