{
  "name": "cilly",
  "version": "1.0.25",
  "description": "The last library you'll ever need for building intuitive, robust and flexible CLI tools with Node.js and TypeScript.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "nyc --reporter=json-summary --reporter=text mocha -r ts-node/register 'src/**/*.test.ts'",
    "build": "tsc",
    "prepublish": "npm run build"
  },
  "nyc": {
    "include": "src",
    "exclude": [
      "src/presentation.ts",
      "*/**/*.test.ts"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cilly-cli/cilly"
  },
  "keywords": [
    "cli",
    "node",
    "nodejs",
    "javascript",
    "typescript",
    "command",
    "line",
    "interface",
    "tool"
  ],
  "author": "Anders Brams",
  "license": "MIT",
  "devDependencies": {
    "@types/chai": "^4.2.14",
    "@types/chai-as-promised": "^7.1.3",
    "@types/mocha": "^8.2.0",
    "@types/node": "^14.14.13",
    "@types/sinon": "^9.0.10",
    "@typescript-eslint/eslint-plugin": "^4.9.1",
    "@typescript-eslint/parser": "^4.9.1",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "eslint": "^7.15.0",
    "eslint-plugin-unused-imports": "^1.0.1",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "sinon": "^9.2.2",
    "ts-node": "^9.1.1",
    "typescript": "^4.1.3"
  },
  "dependencies": {}
}