forked from che-incubator/che-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.06 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.06 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
{
"name": "api",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "eclipse-che",
"license": "EPL-2.0",
"version": "0.0.1",
"engines": {
"vscode": "^1.63.0"
},
"icon": "images/eclipse-che-logo.png",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/extension.js",
"scripts": {
"compile": "gulp compile-extension:che-api",
"watch": "gulp watch-extension:che-api",
"vscode:prepublish": "npm run compile",
"test": "jest",
"license:generate": "podman run --rm -t -v $PWD:/workspace/project quay.io/che-incubator/dash-licenses:next"
},
"dependencies": {
"@devfile/api": "^2.3.0-1738854228",
"axios": "^1.13.1",
"@kubernetes/client-node": "^0.22.0",
"fs-extra": "^11.2.0",
"inversify": "^6.0.2",
"js-yaml": "^4.1.0",
"reflect-metadata": "^0.2.2",
"vscode-nls": "^5.0.0",
"@eclipse-che/workspace-telemetry-client": "^0.0.1-1685523760"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "22.x",
"jest": "^27.4.7",
"ts-jest": "^27.1.2",
"webpack-node-externals": "^3.0.0"
},
"overrides": {
"jsonpath-plus": "10.1.0",
"request": {
"form-data": "2.5.5"
},
"@types/node-fetch": {
"form-data": "4.0.4"
},
"jsdom": {
"form-data": "3.0.4"
}
},
"repository": {
"type": "git",
"url": "https://github.com/che-incubator/che-code.git"
},
"jest": {
"testEnvironment": "node",
"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"
]
}
}