forked from bythope/discord-webhook-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 893 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
{
"name": "discord-webhook-messages",
"version": "1.1.0",
"description": "GitHub action for posting messages on discord server",
"main": "index.js",
"scripts": {
"build": "ncc build src/index.js --license licenses.txt",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:bythope/discord-webhook-messages.git"
},
"keywords": [
"github-actions",
"discord"
],
"author": "Daniel Kalevski",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bythope/discord-webhook-messages/issues"
},
"homepage": "https://github.com/bythope/discord-webhook-messages#readme",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "4.0.0",
"axios": "0.20.0",
"discord.js": "12.3.1"
},
"devDependencies": {
"@vercel/ncc": "0.24.1",
"chai": "4.2.0",
"mocha": "8.1.3"
}
}