-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.86 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
{
"name": "cspell-integration-tests",
"private": true,
"version": "9.0.2",
"description": "Integration tests for cspell. It will execute cspell against various repositories and compare the results.",
"bin": {
"cspell-integration-tests": "tester.js",
"normalize-output": "scripts/normalize-output.mjs"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"clean": "pnpm run clean-dist && pnpm run clean-repos",
"clean-dist": "shx rm -rf dist coverage \"*.tsbuildInfo\"",
"clean-repos": "shx rm -rf repositories/temp temp",
"clean-build": "pnpm run clean && pnpm run build",
"add-repo": "node tester.js add -t $(gh auth token)",
"tester": "node tester.js check -t $(gh auth token)",
"integration-tests": "node tester.js check -f",
"test-vitest": "vitest run",
"update-snapshots-only": "node tester.js check --update-snapshots",
"update-repositories": "node tester.js check --update-repositories"
},
"author": "Jason Dent",
"license": "MIT",
"dependencies": {
"@cspell/cspell-types": "workspace:*",
"@octokit/rest": "^22.0.1",
"ansi-escapes": "^7.3.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"csv-parse": "^6.1.0",
"csv-stringify": "^6.6.0",
"jest-diff": "^30.2.0",
"shelljs": "^0.10.0",
"simple-git": "^3.32.0",
"vscode-uri": "^3.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@cspell/cspell-bundled-dicts": "workspace:*",
"@cspell/dict-de-de": "^4.1.2",
"@cspell/dict-en_us": "^4.4.29",
"@cspell/dict-rust": "^4.1.2",
"@cspell/dict-shell": "^1.1.2",
"@cspell/dict-win32": "^2.0.10",
"@types/shelljs": "^0.10.0",
"cspell": "workspace:*"
},
"main": "tester.js",
"keywords": [],
"files": [
"dist",
"scripts",
"tester.js",
"custom-reporter.js"
]
}