{
  "name": "gitlab-ci-env",
  "version": "10.3.0",
  "description": "Get built-in environment variables exposed by GitLab CI.",
  "exports": "./index.js",
  "types": "./index.d.ts",
  "scripts": {
    "build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly",
    "hooks:pre-commit": "npm run lint && npm run prettier:check",
    "hooks:pre-push": "npm audit --audit-level=high && npm test",
    "lint": "npm run lint:js && npm run lint:md",
    "lint:js": "eslint .",
    "lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
    "prettier:check": "prettier --check .",
    "prettier:fix": "prettier --write .",
    "test": "jest --ci index.test.js",
    "test:all": "npm test && npm run test:var",
    "test:no-coverage": "jest --ci --collectCoverage false index.test.js",
    "test:var": "jest --ci variables.test.js"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/gitlab-ci-utils/gitlab-ci-env.git"
  },
  "keywords": [
    "gitlab",
    "ci",
    "continuous integration",
    "environment",
    "variable"
  ],
  "author": "Aaron Goldenthal <npm@aarongoldenthal.com>",
  "license": "MIT",
  "engines": {
    "node": "^18.12.0 || ^20.9.0 || >=22.0.0"
  },
  "files": [
    "./index.js",
    "./index.d.ts"
  ],
  "bugs": {
    "url": "https://gitlab.com/gitlab-ci-utils/gitlab-ci-env/issues"
  },
  "homepage": "https://gitlab.com/gitlab-ci-utils/gitlab-ci-env",
  "devDependencies": {
    "@aarongoldenthal/eslint-config-standard": "^34.0.0",
    "dotenv": "^16.4.7",
    "eslint": "^9.22.0",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "markdownlint-cli2": "^0.17.2",
    "prettier": "^3.5.3",
    "typescript": "^5.8.2"
  }
}
