-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.36 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
{
"name": "@343dev/languagetool-node",
"version": "2.0.2",
"description": "Node.js wrapper for LanguageTool",
"keywords": [
"spellcheck",
"grammar",
"spelling",
"languagetool",
"grammar-checker"
],
"license": "MIT",
"author": "Andrey Warkentin (https://github.com/343dev)",
"repository": {
"type": "git",
"url": "https://github.com/343dev/languagetool-node"
},
"type": "module",
"exports": "./index.js",
"bin": {
"languagetool-node": "./index.js"
},
"files": [
"lib/",
".languagetoolrc.js",
"index.js",
"install.js",
"logo.png"
],
"scripts": {
"lint": "eslint .",
"postinstall": "node install.js",
"test": "echo \"Error: no test specified\" && exit 1",
"update-git-hooks": "npx simple-git-hooks"
},
"engines": {
"node": ">=18.17"
},
"dependencies": {
"deepmerge": "^4.3.1",
"nanospinner": "^1.1.0",
"node-stream-zip": "^1.15.0",
"progress": "^2.0.3",
"vfile": "^6.0.2",
"vfile-location": "^5.0.3",
"vfile-reporter": "^8.1.1"
},
"devDependencies": {
"@343dev/eslint-config": "^1.0.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.8",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"extends": "@343dev"
}
}