-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 901 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
34
{
"name": "aghanim",
"version": "0.3.0",
"description": "Alternative command client for ErisJS to create Discord bots",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "./node_modules/.bin/eslint index.js",
"docs": "jsdoc src -d docs --readme ./README.md -c ./conf.json -u ./tutorials",
"predeploy": "npm run docs",
"deploy": "gh-pages -d docs",
"prettier:check": "prettier src --check",
"prettier:fix": "prettier src --write"
},
"keywords": [
"Aghanim",
"Eris",
"Discord",
"Bot"
],
"author": "Desvelao^^ <iamdesvelao@gmail.com>",
"license": "MIT",
"dependencies": {
"another-logger": "^3.0.1",
"eris": "^0.16.1",
"glob": "^7.2.0",
"require-reload": "^0.2.2"
},
"devDependencies": {
"gh-pages": "^4.0.0",
"jsdoc": "3.6.0",
"prettier": "2.3.2"
}
}