forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 4.97 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cspell-monorepo",
"version": "1.0.0",
"description": "cspell monorepo.",
"main": "bin.js",
"bin": {
"cspell-monorepo": "bin.js",
"symlink": "build_tools/bin/symlink.js"
},
"packageManager": "pnpm@7.9.0",
"private": true,
"scripts": {
"bt": "pnpm run build && pnpm run test",
"build-dev": "pnpm run --filter \\!website build-dev",
"build-cspell-types-docs": "cd doc-generator && pnpm i && pnpm run build-cspell-types-docs",
"build-integration-tests": "cd ./integration-tests && pnpm i",
"build-schema": "pnpm -r run build-schema",
"build": "pnpm -r run build && pnpm -r run prepare-cspell-action",
"check-spelling": "npx cspell -c cspellrc.json",
"clean-build": "pnpm run clean && pnpm -r run clean-build",
"clean-dist": "rimraf \"packages/*/dist\"",
"clean": "rimraf \"{*,*/*}/{.tsbuildinfo,temp,coverage}\" lcov.info && pnpm -r run clean",
"coverage-collect": "globcat packages/*/coverage/lcov.info > lcov.info",
"coverage": "pnpm --stream -r run coverage && pnpm run coverage-collect",
"eslint-fix": "eslint . --fix --cache",
"eslint-fix-no-cache": "eslint . --fix",
"ibt": "pnpm install && pnpm run build && pnpm test",
"install-website": "pnpm run website-install",
"lint-ci": "eslint . && prettier -c \"**/*.{md,yaml,yml,json}\"",
"lint-docs-ci": "prettier -c \"docs/**/*.{md,markdown,yaml,yml,json,html,htm}\"",
"lint-docs": "prettier -w \"docs/**/*.{md,markdown,yaml,yml,json,html,htm}\"",
"lint": "pnpm run eslint-fix && prettier -w \"**/*.{md,yaml,yml,json}\"",
"prepare-cspell-action": "pnpm i && pnpm -r run prepare-cspell-action",
"pre-pub": "pnpm run clean-dist && pnpm run ibt",
"pub": "pnpm run pre-pub && lerna publish --conventional-commits --sync-workspace-lock",
"pub-grad": "pnpm run pre-pub && lerna publish --conventional-commits --conventional-graduate --sync-workspace-lock",
"pub-next": "pnpm run pre-pub && lerna publish --conventional-commits --conventional-prerelease --sync-workspace-lock --dist-tag next",
"symlink": "node build_tools/bin/symlink.js packages test-packages",
"test-watch": "pnpm -r run --parallel test-watch",
"test": "pnpm -r run test && pnpm run test-schema",
"test-bin": "pnpm run test-bin-spell && pnpm run test-bin-spell-cache-content && pnpm run test-bin-spell-cache-metadata && pnpm run test-bin-trace && pnpm run test-bin-check",
"test-bin-check": "node ./bin.js check README.md",
"test-bin-spell": "node ./bin.js -c cspellrc.json --no-progress",
"test-bin-spell-cache-content": "node ./bin.js -c cspellrc.json --cache --cache-strategy content --cache-location temp/.cspellcache-content",
"test-bin-spell-cache-metadata": "node ./bin.js -c cspellrc.json --cache --cache-strategy metadata temp/.cspellcache-meta",
"test-bin-trace": "node ./bin.js trace test",
"test-build-docs": "cd doc-generator && pnpm i && pnpm run test-build-docs",
"test-integrations": "cd ./integration-tests && pnpm run integration-tests",
"test-schema": "ajv -s ./cspell.schema.json -d cspell.json -c ./packages/cspell-types/ajv.config.js",
"update-packages": "pnpm run update-packages-src && pnpm run update-packages-docs",
"update-packages-docs": "cd website && pnpm run update-packages",
"update-packages-src": "pnpm -r up",
"update-dictionary-packages": "pnpm --filter \"@cspell/cspell-bundled-dicts\" up \"@cspell/dict*\"",
"update-integrations-and-snapshots": "pnpm -r run update-repositories --scope cspell-integration-tests",
"update-integrations-list": "cd integration-tests && ./repo-list.sh",
"update-schema": "cd packages/cspell-types && pnpm i && pnpm run build",
"update-snapshots": "pnpm -r run update-snapshots-only --scope cspell-integration-tests",
"website-install": "cd website && pnpm i",
"website-lint": "cd website && pnpm run lint",
"website-lint-ci": "cd website && pnpm run lint-ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell.git"
},
"keywords": [
"spelling",
"code",
"CI/CD"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/issues"
},
"homepage": "https://streetsidesoftware.github.io/cspell/",
"devDependencies": {
"@cspell/eslint-plugin": "workspace:^",
"@lerna-lite/cli": "^1.10.0",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"ajv-cli": "^5.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"globcat": "^2.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}