forked from Khaaz/AxonCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "axoncore",
"version": "2.0.0",
"description": "Universal Bot Framework for Eris and Discordjs. Fully featured Client, Command and Event handler with built in DB.",
"author": "KhaaZ#0001",
"link": "https://github.com/Khaazz/AxonCore",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"esm": "^3.2.25",
"eventemitter3": "^4.0.0"
},
"optionalDependencies": {
"mongoose": "^5.7.7"
},
"devDependencies": {
"@axonteam/doc-gen": "git+https://github.com/AxonTeam/doc-gen",
"@axonteam/eslint-config": "^2.2.0",
"@types/mongoose": "^5.5.32",
"@types/node": "^12.12.14",
"chalk": "^2.4.2",
"discord.js": "discordjs/discord.js",
"eris": "abalabahaha/eris#dev",
"eslint": "^6.6.0",
"mongoose": "^5.7.7",
"superagent": "^5.1.0",
"typescript": "^3.6.4",
"yarn": "^1.19.1"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"lint": "eslint src examples *.js",
"test:push": "eslint src examples *.js",
"test:publish": "eslint src *.js",
"docgen": "node ./scripts/gendoc.js && cp README.md ./docs/README.md",
"start:eris": "node -r esm examples/eris/src/index.js",
"start:djs": "node -r esm examples/djs/src/index.js",
"pm2start:eris": "node examples/eris/scripts/start.js",
"pm2start:djs": "node examples/djs/scripts/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Khaazz/AxonCore.git"
},
"bugs": {
"url": "https://github.com/Khaazz/AxonCore/issues"
},
"homepage": "https://github.com/Khaazz/AxonCore#readme",
"keywords": [
"bot",
"discord",
"framework",
"eris",
"discord.js",
"discordjs",
"core",
"handler",
"commandHandler",
"commandFramework"
]
}