forked from jsarafajr/slackify-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.45 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
{
"name": "transpile-md",
"version": "0.10.1",
"description": "write messages once, transpile many times",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/mok0230/transpile-md.git"
},
"keywords": [
"transpile",
"markdown",
"slack",
"telegram",
"discord",
"parser",
"remark",
"unified"
],
"author": {
"name": "mok",
"web": "https://github.com/mok0230"
},
"bugs": {
"url": "https://github.com/mok0230/transpile-md/issues"
},
"homepage": "https://github.com/mok0230/transpile-md#readme",
"jest": {
"testURL": "http://localhost/"
},
"dependencies": {
"mdast-util-to-markdown": "^0.6.2",
"rehype-highlight": "^4.0.0",
"rehype-sanitize": "^4.0.0",
"rehype-stringify": "^8.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"remark-stringify": "^9.0.0",
"unified": "^9.0.0",
"unist-util-remove": "^2.0.1",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"codecov": "^3.7.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1"
},
"files": [
"README.md",
"src/*",
"index.js",
"index.d.ts",
"LICENSE"
]
}