forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.15 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": "cspell-dicts",
"private": true,
"scripts": {
"test": "lerna run test",
"lint": "yarn run lint-format && cspell --no-progress",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\" && cspell",
"lint-format": "eslint --fix . && prettier -w \"**/*.{md,json,yml,yaml}\"",
"build-all": "lerna run --concurrency 2 --stream build --no-bail",
"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": "yo cspell-dicts",
"clean": "rimraf \"packages/*/*.txt.gz\" \"dictionaries/*/*.txt.gz\"",
"generate-doc-dictionaries": "./scripts/dictionaries.sh > dictionaries.md && yarn run lint-format",
"installX": "git config core.hooksPath .githooks",
"prepare": "lerna run prepare",
"force-publish": "yarn prepare && yarn test && lerna exec --no-bail \"npm publish\"",
"pub-lerna": "lerna publish --conventional-commits --concurrency 2",
"pub": "yarn run conditional-build && yarn run check-dirty && yarn run prepare && yarn test && yarn run pub-lerna",
"pub-recover": "lerna publish from-package --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": [
"**/wordlist-medicalterms-en"
]
},
"devDependencies": {
"@cspell/cspell-tools": "^6.0.0",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.3",
"cspell": "^6.0.0",
"cspell-tools": "^5.1.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"hunspell-reader": "^6.0.0",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"yamljs": "^0.3.0"
},
"resolutions": {
"**/yo/meow": "^9.0.0",
"**/ansi-regex": "^5.0.1",
"**/find-versions/semver-regex": "^3.1.3"
},
"license": "GPL-3.0-or-later"
}