{
  "name": "nix-clap",
  "version": "1.3.13",
  "description": "Simple, lightweight, flexible, and comprehensive Un*x Command Line Argument Parsing for NodeJS",
  "main": "lib/nix-clap.js",
  "scripts": {
    "test": "clap test",
    "lint": "clap lint",
    "coveralls": "cat coverage/lcov.info | coveralls",
    "coverage": "clap electrode/check",
    "check": "clap -n -x electrode/check coveralls"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jchip/nix-clap.git"
  },
  "files": [
    "lib"
  ],
  "keywords": [
    "unix",
    "un*x",
    "clap",
    "lightweight",
    "command",
    "line",
    "argument",
    "arguments",
    "parsing",
    "cli",
    "yargs",
    "argparse",
    "commander",
    "optimist"
  ],
  "author": "Joel Chen <joel123@gmail.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "strip-ansi": "^4.0.0"
  },
  "devDependencies": {
    "coveralls": "^3.1.1",
    "electrode-archetype-njs-module-dev": "^3.0.3",
    "prettier": "^1.19.1"
  },
  "nyc": {
    "all": true,
    "reporter": [
      "lcov",
      "text",
      "text-summary"
    ],
    "exclude": [
      "coverage",
      "*clap.js",
      "gulpfile.js",
      "dist",
      "test",
      "examples"
    ],
    "check-coverage": true,
    "statements": 100,
    "branches": 100,
    "functions": 100,
    "lines": 100,
    "cache": true
  },
  "prettier": {
    "printWidth": 100,
    "arrowParens": "avoid",
    "trailingComma": "none"
  }
}
