-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.05 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-mermaid-less",
"version": "0.0.7",
"description": "mermaid load plugin for [markdown-it](https://github.com/markdown-it/markdown-it) markdown parser.",
"license": "MIT",
"repository": "https://github.com/searKing/markdown-it-mermaid-less",
"bugs": "https://github.com/searKing/markdown-it-mermaid-less/issues",
"homepage": "https://github.com/searKing/markdown-it-mermaid-less/blob/master/README.md",
"author": {
"name": "Haixin Chen",
"email": "471030698@qq.com",
"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\"",
"lint": "eslint \"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": {
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"lodash": "^4.17.15",
"markdown-it": "^13.0.2",
"markdown-it-container": "^3.0.0",
"mermaid": "^10.6.1"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/lodash": "^4.14.200",
"@types/markdown-it": "^13.0.1",
"@types/markdown-it-container": "^2.0.8",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}