-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "foliant-md-linter",
"version": "0.2.1",
"description": "CLI tool for linting Foliant markdown sources",
"license": "MIT",
"homepage": "https://github.com/holamgadol/foliant-md-linter",
"repository": {
"type": "git",
"url": "https://github.com/holamgadol/foliant-md-linter.git"
},
"bugs": "https://github.com/holamgadol/foliant-md-linter/issues",
"bin": {
"foliant-md-linter": "linter.js"
},
"scripts": {
"lint": "eslint .",
"test": "jest --runInBand",
"validate": "npm run lint && npm test"
},
"dependencies": {
"cli-color": "^2.0.4",
"cli-spinner": "^0.2.10",
"commander": "^9.5.0",
"git-repo-name": "^1.0.1",
"markdown-link-check": "~3.10.3",
"markdownlint-cli2": "^0.6.0",
"markdownlint-rules-foliant": "latest",
"uuid": "^11.0.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1"
}
}