forked from lukeapage/node-markdown-spellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "@prosebot/markdown-spellcheck",
"version": "1.3.1",
"description": "Spell-checks markdown files with an interactive CLI allowing automated spell checking.",
"keywords": [
"markdown",
"spell",
"spell-check",
"spellcheck",
"spelling"
],
"engines": {
"node": ">= 8"
},
"main": "lib/index.js",
"module": "lib/index.js",
"bin": {
"mdspell": "./bin/mdspell"
},
"scripts": {
"spell-check": "node bin/mdspell -ran *.md",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format": "prettier --write \"./**/*.{js,json,md}\"",
"format-check": "prettier --list-different \"./**/*.{js,json,md}\"",
"test": "jest --coverage"
},
"author": "Luke Page",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/lukeapage/node-markdown-spellcheck.git"
},
"bugs": {
"url": "https://github.com/lukeapage/node-markdown-spellcheck/issues"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.0.1",
"dictionary-en-au": "^2.1.1",
"dictionary-en-gb": "^2.1.1",
"dictionary-en-us": "^2.1.1",
"dictionary-es": "^1.2.3",
"globby": "^10.0.1",
"inquirer": "^7.0.1",
"js-yaml": "^3.13.1",
"marked": "^0.8.0",
"nodehun": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^11.0.0",
"jest": "^24.9.0",
"prettier": "^1.19.1"
}
}