forked from wooorm/dictionaries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
{
"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 <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"Thomas Beverley <tom.beverley101@gmail.com>"
],
"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",
"prettier": "^1.12.1",
"remark-cli": "^6.0.0",
"remark-preset-wooorm": "^4.0.0",
"tape": "^4.8.0",
"to-vfile": "^5.0.0",
"unist-builder": "^1.0.2",
"utf-8-validate": "^5.0.0",
"xo": "^0.24.0",
"xtend": "^4.0.1"
},
"scripts": {
"generate": "sh script/crawl.sh && node script/generate",
"format": "remark . -qfo && prettier --write \"**/*.js\" && 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
},
"remarkConfig": {
"settings": {
"paddedTable": false
},
"plugins": [
"preset-wooorm",
"./script/list-of-dictionaries"
]
}
}