forked from FissionFeline/discord-js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "discord-js-template",
"version": "3.3.2",
"description": "An adaptation of Furious Feline's Discord.js Template, updated and customized by Maximus7474.",
"main": "src/main.js",
"scripts": {
"test": "mocha 'test/*.js'",
"test-lint": "mocha 'test/lint-test.js'",
"lint": "eslint src/**/*.js",
"start": "node src/main.js",
"deploy": "node deployment/register_commands.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maximus7474/discord-js-template.git"
},
"keywords": [
"Discord",
"Discord.js",
"Fork",
"Template"
],
"author": "Maximus7474",
"contributors": [
{
"name": "Furious Feline",
"url": "https://github.com/FissionFeline"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Maximus7474/discord-js-template-fork/issues"
},
"homepage": "https://github.com/Maximus7474/discord-js-template-fork#readme",
"dependencies": {
"assert": "^2.0.0",
"colors": "^1.4.0",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"eslint": "^9.12.0",
"mocha": "^10.7.3",
"sqlite3": "^5.1.7"
}
}