-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
31 lines (31 loc) · 895 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
{
"name": "node-red-contrib-discord",
"version": "5.0",
"description": "Node-RED node for interacting with Discord",
"main": "discord/discord.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Joris van de Donk <jorisvddonk@gmail.com>",
"license": "MIT",
"dependencies": {
"discord.js": "^12.5.3",
"flatted": "^3.1.1"
},
"bugs": {
"url": "https://github.com/jorisvddonk/node-red-contrib-discord/issues"
},
"repository": "jorisvddonk/node-red-contrib-discord",
"keywords": [
"node-red"
],
"node-red": {
"nodes": {
"discord-token": "discord/discord-token.js",
"discordMessage": "discord/discordMessage.js",
"discordSendMessage": "discord/discordSendMessage.js",
"discordDeleteMessage": "discord/discordDeleteMessage.js",
"discordClient": "discord/discordClient.js"
}
}
}