-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.38 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
{
"private": true,
"name": "mermaid-lint",
"version": "0.0.0",
"description": "A lintting and formatting tool for mermaid.",
"license": "GPL-3.0-or-later",
"author": "Yokozuna59",
"homepage": "/~https://github.com/Yokozuna59/mermaid-lint#readme",
"repository": {
"type": "git",
"url": "/~https://github.com/Yokozuna59/mermaid-lint.git"
},
"bugs": {
"url": "/~https://github.com/Yokozuna59/mermaid-lint/issues"
},
"type": "module",
"scripts": {
"clean": "rimraf coverage && pnpm run --recursive clean",
"build": "pnpm run --recursive build",
"coverage": "vitest run --coverage",
"format": "prettier --write \"**/*.{json,ts}\" && markdownlint --dot --fix .",
"lint": "eslint --ext ts --fix . && markdownlint --dot --fix .",
"prepare": "husky install",
"prepublishOnly": "pnpm build && pnpm lint && vitest run",
"test": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-angular": "^17.6.5",
"@commitlint/format": "^17.4.4",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitest/coverage-istanbul": "^0.31.4",
"conventional-changelog-angular": "^5.0.13",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-check-file": "^2.3.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.1.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-vitest": "^0.2.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"markdownlint-cli": "^0.34.0",
"prettier": "^2.8.8",
"prettier-plugin-multiline-arrays": "^1.1.4",
"rimraf": "^5.0.1",
"vitest": "^0.31.4"
},
"keywords": [
"mermaid",
"lint",
"linter",
"format",
"formatter"
],
"packageManager": ">=pnpm@8.4.0"
}