-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "kickabot",
"version": "1.0.0",
"description": "Telegram Bot providing football stats",
"private": true,
"main": "server.js",
"dependencies": {
"bunyan": "~1.8.0",
"bunyan-loggly": "~1.4.0",
"cache-manager": "^1.2.2",
"config": "^1.17.1",
"dateformat": "~3.0",
"lodash": "~4.17.0",
"node-telegram-bot-api": "^0.40.0",
"q": "^1.4.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"forever": "~1.0",
"semistandard": "~14.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Gary McPherson",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/Genyus/KickaBot.git"
},
"semistandard": {
"parser": "babel-eslint"
}
}