-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "codeship-telegram-bot",
"version": "1.0.0",
"description": "A Telegram Bot for Codeship notifications",
"main": "dist/app/index.js",
"engines": {
"node": "8"
},
"scripts": {
"build": "tsc",
"test": "mocha src/test",
"start": "node dist/app/start",
"deploy": "mkdir -p dist/empty && firebase deploy -f --token \"$FIREBASE_TOKEN\" --project build-notifier-bot",
"firebase": "firebase",
"config:get": "firebase functions:config:get --project build-notifier-bot",
"config:set": "firebase functions:config:set --project build-notifier-bot"
},
"keywords": [
"telgram",
"codeship"
],
"author": "Dominic Bartl",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"cnfg": "^1.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.2.0",
"firebase-functions": "^3.0.1",
"node-env-file": "^0.1.8",
"node-telegram-bot-api": "^0.30.0",
"universal-analytics": "^0.4.20"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"firebase-tools": "^7.0.1",
"mocha": "^6.1.4",
"should": "^13.2.3",
"typescript": "^3.5.2"
}
}