-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "telegram-github-search-bot",
"version": "1.0.0",
"description": "a Github search bot for Telegram",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mamal72/telegram-github-search-bot.git"
},
"keywords": [
"telegram",
"github",
"bot",
"api",
"es6",
"es7"
],
"author": "Mohamad Jahani <m4m4lj@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mamal72/telegram-github-search-bot/issues"
},
"homepage": "https://github.com/mamal72/telegram-github-search-bot#readme",
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^1.1.1",
"gulp-newer": "^1.1.0",
"gulp-sourcemaps": "^1.6.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"github": "^0.2.4",
"node-telegram-bot-api": "^0.19.0"
}
}