forked from xen/markdown-tg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "@bots-house/markdown-tg",
"version": "0.2.0",
"description": "Javascript Telegram markdown parsing, made simple",
"main": "markdown-tg.js",
"scripts": {
"test": "make test && size-limit",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "https://github.com/bots-house/markdown-tg.git"
},
"keywords": [
"markdown",
"telegram",
"simple",
"react",
"html",
"ast",
"markup",
"text processing"
],
"author": "Mikhail Kashkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/bots-house/markdown-tg/issues"
},
"homepage": "https://github.com/bots-house/markdown-tg",
"devDependencies": {
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^2.5.3",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"size-limit": "^0.13.1",
"uglify-js": "^2.6.2",
"underscore": "^1.8.3"
},
"size-limit": [
{
"path": "markdown-tg.js",
"limit": "4 KB"
}
]
}