-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 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
{
"name": "textlint-rule-spellchecker",
"version": "2.2.1",
"description":
"textlint rule to check spellings with native spellchecker (NSSpellChecker, Hunspell, or the Windows 8 Spell Check API)",
"engines": {
"node": ">=6"
},
"main": "lib/spellchecker.js",
"scripts": {
"build": "babel src -d lib --source-maps",
"prepublish": "npm run --if-present build",
"test": "npm-run-all lint mocha",
"lint": "eslint src test",
"mocha": "mocha",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.{js,json,md}\""
},
"files": ["lib", "src"],
"keywords": ["textlint", "rule", "english", "spellchecker"],
"author": "nodaguti",
"license": "MIT",
"bugs": "https://github.com/textlint-rule/textlint-rule-spellchecker/issues",
"homepage": "https://github.com/textlint-rule/textlint-rule-spellchecker",
"repository": "textlint-rule/textlint-rule-spellchecker",
"dependencies": {
"@textlint/ast-node-types": "^2.0.0",
"spellchecker": "^3.4.4",
"textlint-rule-helper": "^2.0.0",
"textlint-util-to-string": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.9.2",
"textlint": "^9.1.1",
"textlint-tester": "^3.0.3"
},
"lint-staged": {
"*.js": ["prettier", "git add"],
"*.json": ["prettier", "git add"]
}
}