-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.53 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.53 KB
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
86
87
88
89
90
91
{
"name": "spellchecker-cli",
"version": "7.0.3",
"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": "^5.6.2",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.4",
"dictionary-en": "^4.0.0",
"dictionary-en-au": "^3.0.0",
"dictionary-en-ca": "^3.0.0",
"dictionary-en-gb": "^3.0.0",
"dictionary-en-za": "^3.0.0",
"dictionary-vi": "^3.0.0",
"fs-extra": "^11.3.4",
"globby": "^16.1.1",
"js-yaml": "^4.1.1",
"jsonc": "^2.0.0",
"junit-report-builder": "^5.1.1",
"lodash": "^4.17.23",
"pkg-dir": "^9.0.0",
"rehype": "^13.0.2",
"rehype-retext": "^5.0.1",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-retext": "^6.0.1",
"retext": "^9.0.0",
"retext-emoji": "^9.0.0",
"retext-indefinite-article": "^5.0.0",
"retext-repeated-words": "^5.0.0",
"retext-spell": "^6.1.0",
"retext-syntax-mentions": "^4.0.0",
"retext-syntax-urls": "^4.0.0",
"toml": "^3.0.0",
"unist-util-visit": "^5.1.0",
"vfile": "^6.0.3",
"vfile-reporter": "^8.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/app-root-path": "^3.1.0",
"@types/chai": "^5.2.3",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.24",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"chai": "^6.2.2",
"eslint": "^10.0.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"mocha.parallel": "0.15.6",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"typescript": "^5.9.3"
},
"resolutions": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.3"
}
}