-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "overwatch-telegram-bot",
"version": "1.0.0",
"description": "Telegram bot for retrieving Overwatch player stats",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node",
"build": "babel src -d dist --presets es2015,stage-2",
"serve": "nodemon dist/index.js"
},
"engines": {
"node": "6.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chesterhow/overwatch-telegram-bot.git"
},
"bugs": {
"url": "https://github.com/chesterhow/overwatch-telegram-bot/issues"
},
"author": "Chester How",
"license": "MIT",
"dependencies": {
"dedent-js": "^1.0.1",
"node-fetch": "^1.6.0",
"node-telegram-bot-api": "^0.23.3"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"eslint": "^3.6.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"nodemon": "^1.10.2"
},
"keywords": [
"node",
"overwatch",
"telegram",
"bot"
]
}