forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.63 KB
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
{
"name": "@cspell/dict-en-gb-mit",
"version": "3.1.25",
"description": "British English dictionary for cspell with MIT License.",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"cspell",
"cspell-ext",
"en_GB",
"dictionary",
"spelling"
],
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/en_GB#readme",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/en_GB-MIT"
},
"license": "MIT",
"author": "Street Side Software <support@streetsidesoftware.nl>",
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"directories": {
"test": "tests"
},
"files": [
"en_GB.trie.gz",
"cspell-ext.json"
],
"scripts": {
"build": "pnpm run compile && pnpm run prepare:dictionary",
"compile": "cspell-tools-cli build",
"conditional-build": "pnpm run compile --conditional",
"prepare:dictionary": "cspell-tools-cli gzip \"*.trie\"",
"prepublishOnly": "pnpm prepare:dictionary",
"test": "pnpm run test-dict && pnpm run test-text",
"test-dict": "shx head -n 1000 \"./src/legacy/wordsEnGb.txt\" | cspell -c ./cspell-ext.json --locale=en_gb --languageId=* stdin",
"test-text": "cspell -c ./cspell-ext.json --locale=en_gb --languageId=* tests"
},
"devDependencies": {
"@cspell/aoo-mozilla-en-dict": "workspace:^",
"@cspell/dict-en-shared": "workspace:^"
}
}