forked from ejrbuss/markdown-to-txt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "@chatwoot/markdown-to-txt",
"version": "2.0.4",
"description": "Convert markdown to plain text",
"main": "./dist/markdown-to-txt.js",
"types": "./dist/markdown-to-txt.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejrbuss/markdown-to-txt.git"
},
"keywords": [
"markdown",
"remove",
"txt",
"plain",
"text"
],
"author": "Eric Buss ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/ejrbuss/markdown-to-txt/issues"
},
"homepage": "https://github.com/ejrbuss/markdown-to-txt#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash.escape": "^4.0.6",
"@types/lodash.unescape": "^4.0.6",
"@types/marked": "^4.0.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"lodash.escape": "^4.0.1",
"lodash.unescape": "^4.0.1",
"marked": "^4.0.14"
}
}