{
  "name": "z85-cli",
  "description": "Command line client for ZeroMQ Base-85 encoding",
  "version": "0.6.0",
  "homepage": "https://github.com/bkimminich/z85-cli",
  "author": {
    "name": "Bjoern Kimminich <npmjs.org@kimminich.de> (https://github.com/bkimminich)"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bkimminich/z85-cli.git"
  },
  "bugs": {
    "url": "https://github.com/bkimminich/z85-cli/issues"
  },
  "license": "MIT",
  "main": "bin/z85-cli",
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "lint": "standard",
    "test": "nyc nodeunit test"
  },
  "nyc": {
    "all": true,
    "include": [
      "lib"
    ],
    "report-dir": "./build/reports/coverage",
    "reporter": [
      "lcov",
      "text-summary"
    ]
  },
  "dependencies": {
    "z85": "~0.0"
  },
  "devDependencies": {
    "nyc": "~15.1.0",
    "nodeunit": "~0.11",
    "standard": "~12"
  },
  "keywords": [
    "z85",
    "zeromq",
    "base85",
    "base-85",
    "encoding",
    "decoding",
    "encoder",
    "decoder"
  ],
  "preferGlobal": true,
  "bin": {
    "z85": "bin/z85-cli.js"
  },
  "standard": {
    "env": [
      "node"
    ]
  }
}
