-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 914 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
{
"name": "discord-webhook-notifier",
"version": "1.0.1",
"description": "Discord Webhook Notifier is a library that allows you to send notifications to Discord servers easily and quickly using Node.js.",
"main": "src/index.js",
"keywords": [
"discord",
"webhook",
"notifier",
"nodejs"
],
"author": "Ö. Faruk YILDIRIM",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5"
},
"scripts": {
"example": "node examples/advanced.example.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/FARUK-YILDIRIM/discord-webhook-notifier.git"
},
"bugs": {
"url": "https://github.com/FARUK-YILDIRIM/discord-webhook-notifier/issues"
},
"homepage": "https://github.com/FARUK-YILDIRIM/discord-webhook-notifier#readme",
"engines": {
"node": ">=14.0.0"
}
}