-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.13 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
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": "@eclipse-che/plugin-registry-generator",
"version": "7.109.0",
"description": "Generator of yaml files exposed by the plug-in registry.",
"main": "lib/entrypoint.js",
"bin": "lib/entrypoint.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src"
],
"scripts": {
"prepare": "yarn clean && yarn build",
"clean": "rimraf lib",
"format": "if-env SKIP_FORMAT=true && echo 'skip format check' || prettier --check '{src,tests}/**/*.ts' package.json",
"format:fix": "prettier --write '{src,tests}/**/*.ts' package.json",
"lint": "if-env SKIP_LINT=true && echo 'skip lint check' || eslint --cache=true --no-error-on-unmatched-pattern=true '{src,tests}/**/*.ts'",
"lint:fix": "eslint --fix --cache=true --no-error-on-unmatched-pattern=true \"{src,tests}/**/*.{ts,tsx}\"",
"compile": "tsc && cpx './tests/_data/**/*' './lib/tests/_data'",
"build": "concurrently -n \"format,lint,compile,test\" -c \"red,green,blue,magenta\" \"yarn format\" \"yarn lint\" \"yarn compile\" \"yarn test\"",
"test": "if-env SKIP_TEST=true && echo 'skip test' || jest --forceExit"
},
"homepage": "https://github.com/eclipse-che/che-plugin-registry/blob/main/tools/build/README.md",
"dependencies": {
"@devfile/api": "2.2.2-1716821574",
"axios": "^1.10.0",
"decompress": "^4.2.1",
"docker-image-name-parser": "^0.1.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"handlebars": "^4.7.8",
"inversify": "^6.0.2",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"nanospinner": "^1.1.0",
"reflect-metadata": "^0.2.2",
"semver": "^7.6.3",
"simple-git": "^3.24.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "^8.2.2",
"cpx": "^1.5.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.13.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^4.0.2",
"if-env": "^1.0.4",
"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.4.4",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coverageDirectory": "./coverage",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}