-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "eslint-plugin-spellcheck",
"version": "0.0.21",
"description": "ESLint rules to spell check js files",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/aotaduy/eslint-plugin-spellcheck.git"
},
"author": "Andres Otaduy",
"license": "MIT",
"bugs": {
"url": "https://github.com/aotaduy/eslint-plugin-spellcheck/issues"
},
"homepage": "https://github.com/aotaduy/eslint-plugin-spellcheck",
"scripts": {
"test": "nyc mocha",
"lint": "eslint -c .eslintrc.json rules/*.js"
},
"dependencies": {
"globals": "^13.0.0",
"hunspell-spellchecker": "^1.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.5",
"eslint": ">4.18.2",
"istanbul": "^0.4.4",
"mocha": "^6.1.4",
"nyc": "^15.1.0",
"shelljs": "^0.7.3",
"shelljs-nodecli": "^0.1.1"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"keywords": [
"eslint",
"eslintplugin",
"spellcheck",
"spelling"
]
}