{
  "name": "@eclipse-che/che-devworkspace-generator",
  "version": "7.116.0",
  "description": "Generates DevWorkspaces by transforming existing devfiles",
  "main": "lib/entrypoint.js",
  "bin": "lib/entrypoint.js",
  "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 && yarn run test",
    "compile": "tsc --declaration --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'",
    "test": "if-env SKIP_TEST=true && echo 'skip test' || jest --forceExit",
    "watch": "tsc -w",
    "license:check": "license-tool --check",
    "license:generate": "license-tool --harvest",
    "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/devfile/devworkspace-generator.git"
  },
  "author": "",
  "license": "EPL-2.0",
  "bugs": {
    "url": "https://github.com/eclipse/che/issues"
  },
  "homepage": "https://github.com/eclipse-che/che-devfile-registry#readme",
  "dependencies": {
    "@devfile/api": "2.3.0-1757407014",
    "fs-extra": "^11.2.0",
    "inversify": "^7.1.0",
    "js-yaml": "^4.0.0",
    "jsonc-parser": "^3.0.0",
    "jsonschema": "^1.4.1",
    "lodash": "^4.17.21",
    "reflect-metadata": "^0.2.2"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^25.0.3",
    "axios": "^1.13.1",
    "eslint": "^10.0.2",
    "if-env": "^1.0.4",
    "jest": "^30.2.0",
    "license-tool": "https://github.com/che-incubator/dash-licenses.git#c09f697ea6336ce82d365654dfeb7ef6e9c84768",
    "prettier": "^3.3.2",
    "rimraf": "^6.0.1",
    "rollup": "^4.18.0",
    "ts-jest": "^29.2.6",
    "typescript": "^5.6.2"
  },
  "peerDependencies": {
    "axios": "^1.13.1"
  },
  "prettier": {
    "printWidth": 120,
    "singleQuote": true,
    "arrowParens": "avoid"
  },
  "importSort": {
    ".ts": {
      "style": "eslint",
      "parser": "typescript"
    }
  },
  "jest": {
    "clearMocks": true,
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "moduleNameMapper": {
      "^axios$": "axios"
    },
    "coverageDirectory": "coverage",
    "modulePathIgnorePatterns": [
      "<rootDir>/lib"
    ],
    "preset": "ts-jest"
  }
}
