forked from yagop/node-telegram-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "node-telegram-bot-api",
"version": "0.17.0",
"description": "Telegram Bot API",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"telegram",
"telegram bot",
"telegram bot api",
"bot"
],
"scripts": {
"test": "./node_modules/.bin/mocha test/index.js",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"gen-doc": "./node_modules/.bin/jsdoc2md --src src/telegram.js -t README.hbs > README.md",
"jshint": "./node_modules/.bin/jshint src test"
},
"author": "Yago Pérez <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^2.10.1",
"debug": "^2.2.0",
"mime": "^1.3.4",
"request": "^2.64.0"
},
"devDependencies": {
"contributor": "^0.1.25",
"coveralls": "^2.11.4",
"istanbul": "^0.3.21",
"jsdoc-to-markdown": "^1.2.0",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"should": "^7.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yagop/node-telegram-bot-api.git"
},
"bugs": {
"url": "https://github.com/yagop/node-telegram-bot-api/issues"
},
"homepage": "https://github.com/yagop/node-telegram-bot-api",
"contributors": [
{
"name": "Guido García",
"email": "[email protected]",
"url": "https://github.com/palmerabollo",
"contributions": 1,
"additions": 1,
"deletions": 1,
"hireable": true
},
{
"name": "Yago",
"email": "[email protected]",
"url": "https://github.com/yagop",
"contributions": 99,
"additions": 1685,
"deletions": 504,
"hireable": true
},
{
"name": "Anton",
"email": null,
"url": "https://github.com/Feverqwe",
"contributions": 1,
"additions": 23,
"deletions": 5,
"hireable": null
},
{
"name": "Sebastian Troć",
"email": "[email protected]",
"url": "https://github.com/SebastianTroc",
"contributions": 1,
"additions": 1,
"deletions": 1,
"hireable": null
},
{
"name": "Patricio López Juri",
"email": "[email protected]",
"url": "https://github.com/mrpatiwi",
"contributions": 1,
"additions": 49,
"deletions": 2,
"hireable": true
},
{
"name": "Riddler",
"email": null,
"url": "https://github.com/Waterloo",
"contributions": 3,
"additions": 64,
"deletions": 2,
"hireable": true
},
{
"name": "Ivan Skorokhodov",
"email": "[email protected]",
"url": "https://github.com/universome",
"contributions": 3,
"additions": 219,
"deletions": 5,
"hireable": null
},
{
"name": "Ilias Ismanalijev",
"email": "[email protected]",
"url": "https://github.com/Illyism",
"contributions": 7,
"additions": 140,
"deletions": 10,
"hireable": true
}
]
}