This repository was archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.95 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.95 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
{
"name": "@eclipse-che/che-theia-devworkspace-handler",
"version": "0.0.1",
"private": false,
"description": "Handle management of che-theia-plugins and devWorkspace templates",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src"
],
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "yarn run format && yarn run compile && yarn run lint",
"compile": "tsc --project .",
"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}/(!model|**)/*.ts'",
"lint:fix": "eslint --fix --cache=true --no-error-on-unmatched-pattern=true \"{src,tests}/(!model|**)/*.{ts,tsx}\"",
"test": "if-env SKIP_TEST=true && echo 'skip test' || jest --forceExit",
"watch": "tsc -w",
"publish:next": "yarn publish --registry=https://registry.npmjs.org/ --no-git-tag-version --new-version 0.0.1-\"$(date +%s)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-che/che-theia.git"
},
"author": "",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/eclipse/che/issues"
},
"homepage": "https://github.com/eclipse/che-theia/blob/main/tools/devworkspace-handler/README.md",
"dependencies": {
"@devfile/api": "latest",
"axios": "0.21.1",
"inversify": "^5.0.1",
"js-yaml": "^4.0.0",
"jsonc-parser": "^3.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"rollup": "^2.44.0"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageDirectory": "coverage",
"modulePathIgnorePatterns": [
"<rootDir>/lib"
],
"preset": "ts-jest"
}
}