forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"private": true,
"scripts": {
"test": "lerna run test",
"lint": "eslint --fix . && prettier -w \"**/*.{md,json,yml,yaml}\" && cspell",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\" && cspell",
"build": "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\"",
"prepare": "lerna exec \"cp ../../generator-cspell-dicts/generators/app/templates/*.js ./ && cp ../../generator-cspell-dicts/generators/app/templates/*.ts ./\" --scope=cspell-dict* && lerna run prepare",
"force-publish": "yarn prepare && yarn test && lerna exec --no-bail \"npm publish\"",
"pub-lerna": "lerna publish --conventional-commits",
"pub": "yarn run check-dirty && yarn run prepare && yarn test && yarn run pub-lerna",
"update-packages": "yarn upgrade"
},
"workspaces": [
"packages/*",
"dictionaries/*",
"generator-cspell-dicts"
],
"devDependencies": {
"cross-env": "^7.0.2",
"cspell": "^5.3.7",
"cspell-tools": "^5.1.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"hunspell-reader": "^4.0.0",
"lerna": "^4.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
},
"name": "cspell-dicts",
"dependencies": {}
}