forked from wooorm/dictionaries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dictionaries",
"private": true,
"version": "0.0.0",
"description": "Hunspell dictionaries in UTF-8",
"license": "MIT",
"keywords": [
"spelling",
"myspell",
"hunspell",
"dictionary"
],
"repository": "https://github.com/wooorm/dictionaries",
"bugs": "https://github.com/wooorm/dictionaries/issues",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
},
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Thomas Beverley <[email protected]>"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"bcp-47": "^1.0.0",
"bcp-47-normalize": "^1.0.0",
"is-hidden": "^1.0.0",
"language-tags": "^1.0.0",
"mdast-zone": "^4.0.0",
"negate": "^1.0.0",
"not": "^0.1.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"tape": "^5.0.0",
"to-vfile": "^6.0.0",
"unist-builder": "^2.0.0",
"utf-8-validate": "^5.0.0",
"xo": "^0.37.0",
"xtend": "^4.0.0"
},
"scripts": {
"generate": "sh script/crawl.sh && node script/generate",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node test",
"test": "npm run generate && npm run format && npm run test-api"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"unicorn/prefer-optional-catch-binding": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-fn-reference-in-iterator": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm",
[
"gfm",
{
"tablePipeAlign": false
}
],
[
"lint-table-pipe-alignment",
false
],
"./script/list-of-dictionaries"
]
}
}