forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.58 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
{
"name": "cspell-dicts",
"version": "12.0.3",
"private": true,
"scripts": {
"test": "lerna run test",
"lint": "yarn run lint:fix && cspell",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\" && cspell",
"lint:fix": "eslint --fix . && prettier -w \"**/*.{md,json,yml,yaml}\"",
"build:all": "lerna run --concurrency 2 --stream build --no-bail",
"build:readme": "yarn run readme:generate-doc-dictionaries && yarn run readme:inject",
"lint:fix:sort-source-files": "./scripts/sort-source.mjs -c sort-source.config.json",
"conditional-build": "lerna run --concurrency 2 --stream conditional-build --no-bail",
"check-dirty": "git --no-pager diff --compact-summary --exit-code",
"check-spelling": "cspell",
"checksum": "lerna run checksum",
"create-dictionary": "node ./generator-cspell-dicts/node_modules/yo/lib/cli.js cspell-dicts",
"clean": "shx rm -rf \"packages/*/*.txt.gz\" \"dictionaries/*/*.txt.gz\"",
"readme:generate-doc-dictionaries": "./scripts/dictionaries.sh > dictionaries.md",
"readme:inject": "inject-markdown \"*.md\" \"dictionaries/*/README.md\" && prettier -w \"*.md\" \"dictionaries/*/README.md\"",
"prepare": "lerna run prepare",
"pub-recover": "lerna publish from-package --no-push --no-private --concurrency 1",
"update-packages": "yarn upgrade"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts.git"
},
"workspaces": {
"packages": [
"cspell-dict-file-checker",
"dictionaries/*",
"generator-cspell-dicts"
],
"nohoist": [
"generator-cspell-dicts/**",
"**/wordlist-medicalterms-en"
]
},
"devDependencies": {
"@cspell/cspell-tools": "^6.31.1",
"@lerna-lite/cli": "^2.1.0",
"@lerna-lite/exec": "^2.1.0",
"@lerna-lite/publish": "^2.1.0",
"@lerna-lite/run": "^2.1.0",
"commander": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cpy-cli": "^4.2.0",
"cross-env": "^7.0.3",
"cspell": "^6.31.1",
"cspell-tools": "^5.1.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"globby": "^13.1.4",
"hunspell-reader": "^6.31.1",
"inject-markdown": "^1.5.0",
"json5": "2.2.3",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"yamljs": "^0.3.0"
},
"resolutions": {
"**/yo/meow": "^9.0.0",
"**/generator-cspell-dicts/**/ansi-regex": "^5.0.1",
"**/generator-cspell-dicts/**/got": "^11.8.5",
"**/yo/**/find-versions/semver-regex": "^3.1.3"
},
"license": "GPL-3.0-or-later"
}