-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 876 Bytes
/
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
{
"name": "node-telegram-bot-ts",
"version": "1.1.0",
"description": "A Telegram bot written using TypeScript",
"main": "app.js",
"scripts": {
"build": "tsc",
"test": "npm run build",
"start": "tsc && node dist/app.js"
},
"repository": {
"type": "git",
"url": "[email protected]:guyspronck/node-telegram-bot-ts.git"
},
"keywords": [
"telegram",
"bot",
"node",
"typescript"
],
"author": "Guy Spronck",
"license": "MIT",
"dependencies": {
"@types/dotenv": "2.0.20",
"@types/nedb": "0.0.31",
"@types/node": "6.0.60",
"@types/request": "0.0.39",
"botgram": "git+https://github.com/jmendeth/node-botgram.git",
"cool-ascii-faces": "1.3.4",
"dotenv": "4.0.0",
"nedb": "1.8.0",
"node-geocoder": "3.15.2",
"request": "2.79.0"
},
"devDependencies": {
"typescript": "2.1.5"
}
}