forked from eclipse-che/che-devfile-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.94 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
{
"private": true,
"name": "@che-plugin-registry/monorepo",
"version": "0.0.0",
"dependencies": {
"@types/glob": "^7.1.3",
"axios": "^0.21.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"js-yaml": "^3.14.0",
"moment": "^2.29.1",
"semver": "^7.3.2",
"simple-git": "^2.23.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.15",
"@types/js-yaml": "^3.12.5",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"concurrently": "^5.3.0",
"cpx": "^1.5.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.4",
"import-sort-style-eslint": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "^0.0.6",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-mockito": "^2.6.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2",
"vuepress": "^1.7.1"
},
"resolutions": {
"node-forge": "0.10.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"arrowParens": "avoid"
},
"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/pr-check",
"tools/automation"
]
}