forked from wooorm/dictionaries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"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",
"author": "Titus Wormer <[email protected]> (http://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (http://wooorm.com)",
"Thomas Beverley <[email protected]>"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.2",
"bcp-47": "^1.0.3",
"is-hidden": "^1.1.1",
"language-tags": "^1.0.5",
"mdast-zone": "^3.0.1",
"negate": "^1.0.0",
"not": "^0.1.0",
"remark-cli": "^4.0.0",
"remark-preset-wooorm": "^3.0.0",
"tape": "^4.8.0",
"to-vfile": "^2.1.2",
"unist-builder": "^1.0.2",
"utf-8-validate": "^3.0.3",
"xo": "^0.18.1",
"xtend": "^4.0.1"
},
"scripts": {
"build-crawl": "sh script/crawl.sh",
"build-generate": "node script/generate",
"build-md": "remark *.md --quiet --frail --output",
"build": "npm run build-crawl && npm run build-generate && npm run build-md",
"lint": "xo",
"test-api": "node test",
"test": "npm run build && npm run lint && npm run test-api"
},
"xo": {
"space": true,
"esnext": false
},
"remarkConfig": {
"settings": {
"paddedTable": false
},
"plugins": [
"preset-wooorm",
"./script/list-of-dictionaries"
]
}
}