-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "tg-sticker-convert-bot",
"template": {
"extends": [
"nodeEslint"
],
"node": {
"noNodeLock": true
}
},
"version": "0.1.1",
"description": "Converts Telegram Photos / Documents into the required 512 .PNG format",
"bin": {
"tg-sticker-convert-bot": "bin.js"
},
"scripts": {
"test": "mocha -A",
"cov": "nyc mocha",
"lint": "eslint .",
"fix": "eslint --fix ."
},
"keywords": [
"telegram",
"sticker",
"convert",
"bot"
],
"author": "Maciej Krüger <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"emoji-dictionary": "^1.0.11",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"optipng-bin": "https://github.com/mkg20001/optipng-bin/releases/download/v7.0.0/optipng-bin-7.0.0.tgz",
"pngquant-bin": "https://github.com/mkg20001/pngquant-bin/releases/download/v6.0.0/pngquant-bin-6.0.0.tgz",
"teleutils": "^0.1.0",
"urijs": "^1.19.6"
},
"main": "bin.js",
"devDependencies": {
"eslint": "*",
"eslint-config-ipfs": "*",
"eslint-config-oclif": "*",
"mkgs-tool": "^0.1.15",
"mocha": "*",
"nyc": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkg20001/tg-sticker-convert-bot.git"
},
"bugs": {
"url": "https://github.com/mkg20001/tg-sticker-convert-bot/issues"
},
"homepage": "https://github.com/mkg20001/tg-sticker-convert-bot#readme"
}