forked from artemgurzhii/TravisCI-Telegam-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "travis-telegram-bot",
"version": "1.0.0",
"author": {
"name": "Artem Gurzhii",
"email": "[email protected]",
"url": "https://github.com/artemgurzhii"
},
"description": "Telegram bot, which will notify you each time, when your travis ci build is done",
"main": "index.js",
"homepage": "https://github.com/artemgurzhii/TravisCI-Telegam-Bot",
"scripts": {
"start": "nodemon index.js --exec babel-node",
"build": "babel src -d dist --presets es2015,stage-2",
"serve": "nf start",
"lint": "eslint src/**",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register test/**"
},
"bugs": {
"url": "https://github.com/artemgurzhii/TravisCI-Telegam-Bot/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/artemgurzhii/TravisCI-Telegam-Bot"
},
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-preset-es2015": "^6.22.0",
"foreman": "^2.0.0",
"node-telegram-bot-api": "^0.26.0",
"nodemon": "^1.11.0",
"pg": "^6.1.2",
"requisition": "^1.7.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.14.1",
"mocha": "^3.2.0"
}
}