-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "@funboxteam/languagetool-node",
"version": "1.0.5",
"description": "Node.js wrapper for LanguageTool",
"license": "MIT",
"author": "Andrey Ivanov (https://github.com/343dev)",
"repository": {
"type": "git",
"url": "https://github.com/funbox/languagetool-node"
},
"main": "index.js",
"bin": {
"languagetool-node": "./index.js"
},
"files": [
"lib/",
".languagetoolrc.js",
"index.js",
"install.js",
"logo.png"
],
"scripts": {
"lint": "eslint --cache ./",
"postinstall": "node install.js",
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@funboxteam/diamonds": "6.6.0",
"@funboxteam/free-port-finder": "3.1.0",
"axios": "0.21.2",
"deepmerge": "3.2.0",
"node-stream-zip": "1.8.0",
"ora": "3.4.0",
"progress": "2.0.3",
"vfile": "4.0.0",
"vfile-location": "2.0.4",
"vfile-reporter": "5.1.1"
},
"devDependencies": {
"@funboxteam/eslint-config": "7.3.0",
"eslint": "7.32.0",
"husky": "1.3.1",
"lint-staged": "11.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.js": [
"eslint --fix --cache"
]
}
}