-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
{
"name": "linter-textlint",
"version": "5.0.1",
"private": true,
"description": "A plugin for Atom Linter providing an interface to textlint.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:1000ch/linter-textlint.git"
},
"engines": {
"atom": ">=1.10.0 <2.0.0"
},
"scripts": {
"test": "apm test",
"pretest": "npm run lint",
"lint": "eslint ."
},
"keywords": [
"text",
"lint",
"textlint"
],
"author": {
"name": "Shogo Sensui",
"email": "[email protected]",
"url": "https://github.com/1000ch"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/1000ch/linter-textlint/issues"
},
"homepage": "https://github.com/1000ch/linter-textlint#readme",
"configSchema": {
"textlintrcPath": {
"title": ".textlintrc Path",
"description": "It will only be used when there's no config file in project",
"type": "string",
"default": ""
},
"textlintRulesDir": {
"title": "textlint Rules Dir",
"description": "Specify a directory for textlint to load rules from. It will only be used when there's no config file in project. Write the value of path to node_modules.",
"type": "string",
"default": ""
}
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^7.2.3",
"escape-html": "^1.0.3",
"textlint": "^11.9.0",
"textlint-rule-documentation": "^0.2.0",
"textlint-rule-spellcheck-tech-word": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"textlint-plugin-review": "^0.4.1"
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
}
}