-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "markdown2html-pro",
"version": "1.0.6",
"description": "A parser of Markdown and a render to html",
"license": "MIT",
"repository": "https://github.com/searKing/markdown2html-pro",
"bugs": "https://github.com/searKing/markdown2html-pro/issues",
"homepage": "https://github.com/searKing/markdown2html-pro/blob/master/README.md",
"author": {
"name": "Haixin Chen",
"email": "[email protected]",
"url": "https://github.com/searKing"
},
"keywords": [
"markdown",
"html",
"markdown-it"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepare": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"lodash": "^4.17.4",
"markdown-it": "^12.3.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^5.2.5",
"markdown-it-attrs": "^3.0.2",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-expand-tabs": "^1.0.12",
"markdown-it-footnote": "^3.0.1",
"markdown-it-highlightjs": "^3.0.0",
"markdown-it-ins": "^3.0.0",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-mark": "^3.0.0",
"markdown-it-mermaid-pro": "^2.2.4",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.81",
"@types/node": "^13.7.2",
"coveralls": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-node-debug": "^2.0.0",
"prettier": "^1.7.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}