-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name":"guilded-bot",
"version":"1.1.1",
"description":"A library for interacting with the Guilded API for your Guilded Bot",
"main":"src/index.js",
"scripts":{
"dev":"nodemon --trace-warnings test/bot/index.js",
"start":"node src/index.js",
"docs":"jsdoc --readme ./README.md -c ./jsdocs.json ./src/index.js --verbose",
"docs-gh":"jsdoc --readme ./README.md -c ./jsdocs-gh.json ./src/index.js --verbose --destination ./docs",
"test":"jest --coverage --verbose"
},
"keywords":[
"guilded",
"bot",
"api",
"library"
],
"homepage":"https://guildedbot.js.org",
"bugs":{
"url":"https://github.com/guilded-bot-npm/guilded-bot/issues"
},
"contributors":[
{
"name":"MDCDEV",
"email":"mdc@mycommand.xyz",
"url":"https://mdcdev.me"
},
{
"name":"RellyLegend",
"url":"https://github.com/RellyLegend/guilded-api.js"
}
],
"repository":{
"type":"git",
"url":"https://github.com/Guilded-Bot-NPM/Guilded-Bot.git"
},
"engines":{
"node":"^16.0.0"
},
"license":"MIT",
"dependencies":{
"axios":"^0.27.2",
"ws":"^8.9.0"
},
"devDependencies":{
"dotenv":"^16.0.3",
"minami":"^1.2.3",
"nodemon":"^2.0.20"
}
}