forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "cspell-dict-en_us",
"version": "1.2.20",
"description": "English dictionary for cspell.",
"bin": {
"cspell-dict-en-us-link": "./link.js",
"cspell-dict-en-us-unlink": "./unlink.js"
},
"scripts": {
"merge-dictionaries": "cp src/hunspell/* dict && cat src/hunspell/en_US.dic src/en_US.txt > dict/en_US.dic",
"compile": "cspell-tools compile-trie \"dict/en_US.aff\" -o .",
"build": "npm run merge-dictionaries && npm run compile",
"test-dict": "hunspell-reader words -n 10000 \"src/hunspell/en_US.dic\" | cspell -v -c ./cspell-ext.json --local=en --languageId=* stdin",
"test-text": "cspell -v -c ./cspell-ext.json --local=en --languageId=* \"tests/*.txt\"",
"test": "npm run test-dict && npm run test-text",
"prepare": "cp ../../util/* .",
"cspell-link": "node link.js",
"cspell-unlink": "node unlink.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-dicts.git"
},
"keywords": [
"cspell",
"en_US",
"English",
"American",
"US English",
"dictionary",
"spelling"
],
"main": "index.js",
"typings": "index.d.ts",
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/master/packages/en_US#readme",
"dependencies": {
"configstore": "^5.0.0"
},
"files": [
"en_US.trie.gz",
"cspell-ext.json",
"*.js",
"*.d.ts"
],
"gitHead": "2df0350343e3f10b00ef895f44b08a3be10c2f6d"
}