forked from GochoMugo/tgfancy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
48
49
50
51
52
{
"name": "tgfancy",
"version": "0.13.0",
"description": "A Fancy, Higher-Level Wrapper for Telegram Bot API",
"main": "lib/index.js",
"scripts": {
"doc": "jsdoc2md --files lib/client.js --template doc/api.hbs > doc/api.md",
"test": "grunt test",
"test-coverage": "NODE_ENV=testing istanbul cover _mocha --report lcovonly -- --exit -R spec test/test.*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GochoMugo/tgfancy.git"
},
"keywords": [
"telegram",
"bot",
"api"
],
"author": "GochoMugo (www.gmugo.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GochoMugo/tgfancy/issues"
},
"homepage": "https://github.com/GochoMugo/tgfancy#readme",
"engines": {
"node": ">=6"
},
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"node-emoji": "^1.8.1",
"node-telegram-bot-api": "^0.30.0",
"tg-resolve": "^1.3.1",
"ws": "^3.3.3"
},
"devDependencies": {
"coveralls": "^3.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^3.0.3",
"load-grunt-tasks": "^3.5.2",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"request": "^2.83.0",
"should": "^13.1.3"
}
}