-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"version": "0.3.0",
"keywords": [
"textlintrule"
],
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint {src,test}/*.js",
"pretest": "npm run lint",
"test": "textlint-scripts test",
"build": "textlint-scripts build",
"prepublish": "npm run --if-present build"
},
"devDependencies": {
"dictionary-en": "3.0.1",
"eslint": "7.9.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"prettier": "2.1.1",
"textlint-scripts": "3.0.0"
},
"name": "textlint-rule-spelling",
"description": "A textlint rule for spelling of languages as much as possible",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ta2gch/textlint-rule-spelling.git"
},
"author": "TANIGUCHI Masaya",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ta2gch/textlint-rule-spelling/issues"
},
"homepage": "https://github.com/ta2gch/textlint-rule-spelling#readme",
"dependencies": {
"@textlint/regexp-string-matcher": "^1.1.0",
"nspell": "^2.1.2"
},
"peerDependencies": {
"textlint": ">=11.7.6"
}
}