forked from ryan-rowland/albion-guildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
52
{
"name": "albion-guildbot",
"version": "1.0.0-dev",
"description": "A discord bot that posts interesting events for a guild.",
"main": "src/index.js",
"author": "Ryan Rowland<[email protected]>",
"contributors": [
"Hunter Madison",
"Michael Förster<[email protected]>"
],
"keywords": [
"albion",
"discord",
"killbot"
],
"scripts": {
"build": "tsc && copyfiles -u 1 src/*.js lib",
"build-message": "echo Compiling...",
"lint": "tslint -c tslint.json --project tslint.json -t stylish && eslint src",
"lint-message": "echo Linting...",
"start": "npm run build && node lib/index.js"
},
"pre-commit": [
"lint-message",
"lint",
"build-message",
"build"
],
"engines": {
"node": "8.4.0"
},
"dependencies": {
"albion-api": "^1.3.0",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.0",
"discord.js": "^11.2.1",
"express": "^4.15.4",
"jimp": "^0.2.28",
"lowdb": "^1.0.0",
"request": "^2.81.0",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/node": "^8.0.26",
"@types/request": "^2.0.3",
"copyfiles": "^1.2.0",
"eslint": "^4.6.1",
"pre-commit": "^1.2.2",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}