-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "language-grammar-api",
"version": "1.1.6",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/oleg-koval/language-grammar-api"
},
"issues": "https://github.com/oleg-koval/language-grammar-api/issues",
"description": "API wrapper for LanguageTool (grammar check) API based as plugin for Trembita.js",
"main": "lib/index",
"scripts": {
"test": "jest --config jest.config.js",
"lint": "eslint --print-config . | eslint-config-prettier-check && eslint .",
"coverage": "codecov",
"semantic-release": "semantic-release"
},
"keywords": [
"api wrapper",
"trembita plugin",
"grammar api",
"check grammar",
"grammar",
"api",
"grammar check",
"language tool"
],
"author": "Oleg Koval <kvl.olg@gmail.com>",
"license": "ISC",
"engines": {
"node": ">=8.0.0 <11.0.0"
},
"devDependencies": {
"codecov": "3.7.1",
"eslint": "5.15.0",
"eslint-config-prettier": "6.2.0",
"eslint-config-sexy": "5.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.3.0",
"eslint-plugin-prettier": "3.0.1",
"jest": "24.1.0",
"nodemon": "1.18.10",
"prettier": "1.16.4",
"semantic-release": "17.2.3"
},
"dependencies": {
"trembita": "^1.0.5"
}
}