This repository has been archived by the owner on Jun 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.31 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "rin",
"version": "0.0.3",
"description": "simple multi purpose bot",
"main": "lib/main.js",
"engines": {
"node": "8.9.1",
"npm": "5.7.1"
},
"scripts": {
"build": "rm lib/ -rf && ./node_modules/.bin/babel src -d lib",
"dev": "./node_modules/.bin/babel-watch src/main.js",
"cli": "npm run build && STATUS=debug npm start",
"start": "node lib/main.js",
"lint": "./node_modules/.bin/eslint --fix .",
"coala": "coala --non-interactive",
"test": "jest",
"heroku-postbuild": "npm run build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"author": "indmind",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"cssbeautify": "^0.3.1",
"currency-formatter": "^1.4.2",
"discord.js": "^11.3.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"figlet": "^1.2.0",
"goo.gl": "^0.1.4",
"google-translate-api": "^2.3.0",
"is-json": "^2.0.1",
"is-reachable": "^2.4.0",
"jawaskrip": "^0.4.6",
"mathjs": "^4.2.2",
"moment": "^2.22.1",
"money": "^0.2.0",
"node-sass": "^4.9.0",
"prettyjson": "^1.2.1",
"rata": "0.0.1",
"showdown": "^1.8.6",
"simple-markdown": "^0.4.0",
"telegraf": "^3.21.0",
"typescript-compiler": "^1.4.1",
"urban-dictionary": "^1.0.6",
"weather-js": "^2.0.0",
"webshot": "^0.18.0",
"wikijs": "^4.7.0",
"winston": "^2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-wildcard": "^5.0.0",
"babel-watch": "^2.0.7",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"regenerator-runtime": "^0.11.1"
},
"directories": {
"lib": "lib",
"view": "view"
},
"keywords": [
"bot",
"discord",
"telegram"
]
}