{
  "name": "jskos-cli",
  "version": "0.9.0",
  "description": "Command Line Applications to process JSKOS data format",
  "homepage": "https://github.com/gbv/jskos-cli",
  "bin": {
    "jskos-validate": "./bin/jskos-validate",
    "jskos-convert": "./bin/jskos-convert",
    "jskos-enrich": "./bin/jskos-enrich"
  },
  "type": "module",
  "files": [
    "bin/",
    "lib/"
  ],
  "main": "index.js",
  "module": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/gbv/jskos-cli.git"
  },
  "bugs": {
    "url": "https://github.com/gbv/jskos-cli/issues"
  },
  "license": "MIT",
  "scripts": {
    "test": "mocha",
    "coverage": "NODE_ENV=test c8 --reporter=text mocha",
    "lint": "eslint",
    "fix": "eslint --fix",
    "lint-staged": "lint-staged",
    "yesno": "node -e \"const yesno = require('yesno'); yesno({ question: 'Are you sure you want to continue?' }).then(ok => process.exit(ok ? 0 : 1));\"",
    "release": "test $(git rev-parse --abbrev-ref HEAD) = dev && git pull && npm test && npm version $SEMVER && npm run --silent yesno && (git push && git checkout main && git merge dev && git push --follow-tags && git checkout dev) || (git tag -d $(git describe --tags) && git reset --hard HEAD~1)",
    "release:patch": "SEMVER=patch npm run release",
    "release:minor": "SEMVER=minor npm run release",
    "release:major": "SEMVER=major npm run release",
    "prepare": "husky || true"
  },
  "lint-staged": {
    "**/*.js": [
      "eslint --fix"
    ],
    "bin/*": [
      "eslint --fix"
    ]
  },
  "author": "Jakob Voß",
  "devDependencies": {
    "c8": "^11.0.0",
    "cocoda-sdk": "^3.4.13",
    "eslint": "~9.39",
    "eslint-config-gbv": "^2.7.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "mocha": "^11.0.1",
    "yesno": "^0.4.0"
  },
  "dependencies": {
    "cocoda-sdk": "^3.4.13",
    "commander": "^12.1.0",
    "csv": "^6.4.1",
    "jskos-tools": "^1.2.0",
    "jskos-validate": "^1.2.0",
    "json-anystream": "^2.0.1",
    "jsonld": "^9.0.0",
    "ndjson": "^2.0.0",
    "needle": "^3.3.1",
    "yaml": "^2.6.1"
  },
  "engines": {
    "node": ">=20.11.1"
  }
}
