-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
67
68
69
70
71
72
73
{
"name": "markdown-it-all",
"version": "0.3.2",
"keywords": [
"markdown",
"markdown-it",
"markdown render",
"markdown-it plugins",
"markdown-it-all"
],
"description": "An integration of markdown-it and plugins.",
"private": false,
"author": {
"email": "805511939@qq.com",
"name": "breezelin",
"url": "https://github.com/breeze2"
},
"repository": {
"type": "git",
"url": "https://github.com/breeze2/markdown-it-all.git"
},
"bugs": {
"url": "https://github.com/breeze2/markdown-it-all/issues"
},
"homepage": "https://github.com/breeze2/markdown-it-all",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsc -w",
"build": "tsc",
"test": "jest --config jestconfig.json",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"preversion": "yarn lint"
},
"dependencies": {
"highlight.js": "^9.15.6",
"markdown-it": "^8.4.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-github-toc": "^3.2.4",
"markdown-it-ins": "^2.0.0",
"markdown-it-latex": "^0.2.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-mermaid": "^0.2.5",
"markdown-it-source-map": "^0.1.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-list": "^0.1.2"
},
"devDependencies": {
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.11",
"@types/markdown-it": "^0.0.7",
"@types/markdown-it-container": "^2.0.2",
"coveralls": "^3.0.5",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.3"
}
}