-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "textlint-rule-common-misspellings",
"version": "1.0.1",
"description": "textlint rule to check common misspellings",
"author": "IRIDE Monad <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://github.com/io-monad/textlint-rule-common-misspellings",
"repository": "io-monad/textlint-rule-common-misspellings",
"bugs": {
"url": "https://github.com/io-monad/textlint-rule-common-misspellings/issues"
},
"main": "lib/common-misspellings.js",
"scripts": {
"build": "babel src -d lib --source-maps",
"watch": "babel src -d lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "mocha"
},
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"keywords": [
"textlint",
"rule",
"english",
"misspelling",
"proofreading"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"espower-babel": "^4.0.1",
"mocha": "^2.4.5",
"power-assert": "^1.3.1",
"textlint": "^5.7.0",
"textlint-tester": "^1.0.0"
},
"dependencies": {
"misspellings": "^1.0.1",
"textlint-rule-helper": "^1.1.5"
}
}