-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 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
{
"name": "github-spellcheck-cli",
"version": "7.1.5",
"description": "",
"main": "index.js",
"bin": {
"github-spellcheck": "index.js"
},
"scripts": {
"lint": "eslint \"index.js\" \"{lib,test}/*.js\"",
"lint-fix": "eslint \"index.js\" \"{lib,test}/*.js\" --fix",
"spellcheck": "spellchecker \"**/*.{md,txt}\" \"!dictionary.txt\" --dictionaries dictionary.txt --language en-CA",
"test": "mocha -C"
},
"author": "Thomas Broadley <buriedunderbooks@hotmail.com>",
"repository": "https://github.com/tbroadley/github-spellcheck-cli",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@octokit/rest": "^16.33.1",
"chalk": "^2.3.0",
"cli-progress": "^1.6.1",
"command-line-args": "^4.0.7",
"command-line-usage": "^4.0.2",
"diff": "^3.4.0",
"dotenv": "^4.0.0",
"es6-promisify": "^5.0.0",
"fs-extra": "^4.0.3",
"globby": "^7.1.1",
"lodash": "^4.17.10",
"opn": "^5.3.0",
"promise-retry": "^1.1.1",
"prompt-promise": "^1.0.3",
"remark-gemoji": "^4.0.1",
"remark-parse": "^4.0.0",
"spellchecker": "^3.7.1",
"unified": "^6.1.6",
"user-home": "^2.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^10.0.0",
"mockery": "^2.1.0",
"spellchecker-cli": "^4.0.1"
}
}