forked from jsarafajr/slackify-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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
{
"name": "slackify-markdown",
"version": "4.3.0",
"description": "Convert markdown into Slack-specific markdown",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/jsarafajr/slackify-markdown.git"
},
"keywords": [
"slack",
"markdown",
"slackify",
"parser",
"remark",
"unified"
],
"author": {
"name": "Yevhenii Baraniuk",
"web": "https://github.com/jsarafajr"
},
"bugs": {
"url": "https://github.com/jsarafajr/slackify-markdown/issues"
},
"homepage": "https://github.com/jsarafajr/slackify-markdown#readme",
"jest": {
"testURL": "http://localhost/"
},
"dependencies": {
"mdast-util-to-markdown": "^0.6.2",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"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"
]
}