-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
85 lines (85 loc) · 2.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "spellchecker-cli",
"version": "7.0.0",
"description": "A command-line tool for spellchecking files.",
"main": "build/index.js",
"type": "module",
"files": [
"build",
"dictionaries"
],
"bin": {
"spellchecker": "./build/index.js"
},
"scripts": {
"ci": "yarn spellchecker && yarn lint && yarn test",
"lint": "eslint \"**/*.ts\"",
"spellchecker": "tsc && node build/index.js",
"test": "tsc && mocha build/test/**/*test.js",
"prepack": "tsc",
"prepare": "husky install"
},
"author": "Thomas Broadley <buriedunderbooks@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:tbroadley/spellchecker-cli.git"
},
"dependencies": {
"chalk": "^2.4.2",
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.4",
"dictionary-en": "^3",
"dictionary-en-au": "^2.3.0",
"dictionary-en-ca": "^2.3.0",
"dictionary-en-gb": "^2.3.0",
"dictionary-en-za": "^2.0.4",
"dictionary-vi": "^2.1.3",
"fs-extra": "^6.0.1",
"globby": "^11.0.0",
"js-yaml": "^3.14.1",
"jsonc": "^2.0.0",
"junit-report-builder": "^3.0.1",
"lodash": "^4.17.21",
"pkg-dir": "^6.0.1",
"rehype": "^13.0.2",
"rehype-retext": "^5.0.0",
"remark": "^14.0.0",
"remark-frontmatter": "^4.0.0",
"remark-retext": "^5.0.1",
"retext": "^8.1.0",
"retext-emoji": "^8.1.0",
"retext-indefinite-article": "^4.1.0",
"retext-repeated-words": "^4.2.0",
"retext-spell": "^5.1.0",
"retext-syntax-mentions": "^3.1.0",
"retext-syntax-urls": "^3.1.2",
"toml": "^3.0.0",
"unist-util-visit": "^1.4.1",
"vfile": "^3.0.1",
"vfile-reporter": "^6.0.0"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/chai": "^4.2.18",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/fs-extra": "^9.0.11",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.170",
"@types/mocha": "^10.0.1",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"chai": "^4.3.4",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^8.0.1",
"mocha": "^9.2.2",
"mocha.parallel": "0.15.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.3.2"
}
}