-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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": "telegram-bot-bootstrap",
"version": "0.0.15",
"description": "A bootstrap for Telegram bot with directly deployable sample bot and JS-wrapped API methods.",
"main": "API.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/_mocha -u tdd -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/kengz/telegram-bot-bootstrap.git"
},
"keywords": [
"Telegram",
"bot",
"Telegram bot",
"nodeJS",
"API",
"bootstrap",
"template",
"sample",
"Heroku"
],
"author": "kengz",
"license": "MIT",
"bugs": {
"url": "https://github.com/kengz/telegram-bot-bootstrap/issues"
},
"homepage": "https://github.com/kengz/telegram-bot-bootstrap",
"dependencies": {
"body-parser": "^1.13.2",
"ejs": "^2.3.1",
"express": "^4.13.1",
"lomath": "^0.1.6",
"morgan": "^1.6.1",
"multer": "^0.1.8",
"q": "^1.4.1",
"reqscraper": "0.0.2",
"request": "^2.58.0"
},
"devDependencies": {
"chai": "^3.0.0",
"dokker": "^0.1.1",
"mocha": "^2.2.5"
}
}