-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.42 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
{
"name": "jest-runner-vscode-repo",
"private": true,
"description": "Jest runner for testing VS Code extensions",
"author": {
"name": "Adaline Simonian",
"email": "[email protected]",
"url": "https://github.com/adalinesimonian"
},
"workspaces": [
"packages/*"
],
"license": "ISC",
"homepage": "https://github.com/adalinesimonian/jest-runner-vscode#readme",
"repository": "https://github.com/adalinesimonian/jest-runner-vscode",
"bugs": "https://github.com/adalinesimonian/jest-runner-vscode/issues",
"funding": "https://github.com/sponsors/adalinesimonian",
"scripts": {
"build": "yarn workspace jest-runner-vscode run build",
"clean": "yarn workspace jest-runner-vscode run clean",
"format": "run-s \"format:*\"",
"format:eslint": "eslint --ext .js,.ts --fix .",
"format:prettier": "prettier --write .",
"lint": "run-s \"lint:*\"",
"lint:eslint": "eslint --ext .js,.ts .",
"lint:prettier": "prettier --check .",
"lint:types": "tsc --noEmit",
"test": "node clean-e2e.mjs && jest -i",
"ci:download-vscode": "node --no-warnings ci-download-vscode.mjs"
},
"packageManager": "[email protected]",
"engines": {
"vscode": ">=1.71.0",
"node": ">=16.14.2"
},
"dependencies": {
"@achrinza/node-ipc": "9.2.5",
"@jest/reporters": "29.1.2",
"@jest/test-result": "29.1.2",
"@jest/types": "29.1.2",
"@vscode/test-electron": "2.1.5",
"cosmiconfig": "7.0.1",
"jest-cli": "29.1.2",
"jest-environment-node": "29.1.2",
"jest-runner": "29.1.2",
"js-message": "1.0.7"
},
"devDependencies": {
"@jest/transform": "29.1.2",
"@types/achrinza__node-ipc": "npm:@types/[email protected]",
"@types/babel__core": "7.1.19",
"@types/fs-extra": "9.0.13",
"@types/istanbul-lib-coverage": "2.0.4",
"@types/jest": "29.1.2",
"@types/node": "16.11.64",
"@types/vscode": "1.71.0",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"execa": "5.1.1",
"fast-glob": "3.2.12",
"fs-extra": "10.1.0",
"jest": "29.1.2",
"jest-haste-map": "29.1.2",
"jest-resolve": "29.1.2",
"jest-runner-vscode": "workspace:^",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"volta": {
"node": "16.14.2",
"yarn": "1.22.19"
}
}