-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
63 lines (63 loc) · 1.47 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
{
"private": true,
"name": "@eclipse-che/plugin-registry-monorepo",
"version": "0.0.0",
"prettier": {
"printWidth": 120,
"singleQuote": true,
"arrowParens": "avoid"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^4.0.2",
"import-sort-style-eslint": "^6.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-import-sort": "^0.0.7",
"rimraf": "^5.0.8",
"ts-jest": "^29.2.4",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"importSort": {
".ts": {
"style": "eslint",
"parser": "typescript"
}
},
"workspaces": [
"tools/*"
],
"packageManager": "yarn@3.0.2"
}