forked from enricostara/telegram-tl-node
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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
{
"name": "@goodmind/telegram-tl-node",
"version": "0.12.6",
"description": "Telegram TypeLanguage library",
"publishConfig": {
"access": "public"
},
"keywords": [
"telegram",
"tl",
"typelanguage",
"type-language",
"library"
],
"author": "Enrico Stara <enrico.stara@gmail.com>",
"homepage": "https://github.com/goodmind/telegram-tl-node",
"repository": {
"type": "git",
"url": "git://github.com/goodmind/telegram-tl-node.git"
},
"bugs": {
"url": "https://github.com/goodmind/telegram-tl-node/issues"
},
"license": "MIT",
"dependencies": {
"colors": "1.1.2",
"get-log": "^1.1.5",
"jsbn": "0.0.0"
},
"devDependencies": {
"codeclimate-test-reporter": "0.1.0",
"coveralls": "2.11.3",
"gulp": "3.9.0",
"gulp-jshint": "1.11.2",
"gulp-mocha": "2.1.3",
"istanbul": "0.3.17",
"mocha": "2.2.5",
"mocha-better-spec-reporter": "1.1.2",
"mocha-lcov-reporter": "0.0.2",
"requirish": "^0.3.0",
"should": "7.0.2"
},
"main": "index",
"engines": {
"node": ">0.10.30"
},
"scripts": {
"test": "DEBUG=-mocha*,* ./node_modules/gulp/bin/gulp.js test",
"coveralls": "DEBUG=-mocha*,* istanbul cover ./node_modules/gulp/bin/gulp.js cover && cat ./coverage/lcov.info | coveralls && codeclimate < ./coverage/lcov.info && rm -rf ./coverage"
}
}