-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.44 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
{
"name": "mdoctor",
"version": "1.0.1",
"description": "Your CLI Markdown Doctor",
"main": "bin/mdoctor",
"type": "module",
"bin": {
"markdown-doctor": "bin/mdoctor.js",
"mdoctor": "bin/mdoctor.js"
},
"files": [
"bin/mdoctor.js",
"src",
"src/commands",
"src/cli.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yazilimcimekani/mdoctor.git"
},
"keywords": [
"cli",
"mdoctor",
"template",
"markdown",
"markdown-doctor",
"md",
"markdown-guide",
"markdown-helper",
"markdown-cli"
],
"author": {
"name": "Yazılımcı Mekanı Dev Team",
"email": "[email protected]",
"url": "https://yazilimcimekani.github.io"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yazilimcimekani/mdoctor/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/yazilimcimekani/mdoctor",
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-security": "^1.7.1",
"prettier": "2.8.7"
},
"dependencies": {
"chalk": "^5.2.0",
"inquirer": "^9.2.5",
"yargs-parser": "^21.1.1"
}
}