{
  "name": "shell",
  "version": "0.12.0",
  "description": "Command line arguments parser and stringifier",
  "keywords": [
    "shell",
    "cli",
    "arguments",
    "parser",
    "parameters",
    "param",
    "option",
    "command",
    "bash",
    "sh",
    "getopt"
  ],
  "author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
  "bugs": {
    "email": "open@adaltas.com",
    "url": "https://github.com/adaltas/node-shell/issues"
  },
  "contributors": [
    "Sergei Kudinov <sergei@adaltas.com> (https://www.adaltas.com)"
  ],
  "dependencies": {
    "mixme": "^1.1.0",
    "pad": "^3.3.0",
    "plug-and-play": "^2.5.8"
  },
  "devDependencies": {
    "@eslint/js": "^9.15.0",
    "coffeescript": "^2.7.0",
    "dedent": "^1.5.3",
    "eslint": "^9.15.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-mocha": "^10.5.0",
    "eslint-plugin-prettier": "^5.2.1",
    "mocha": "^10.8.2",
    "prettier": "^3.3.3",
    "rollup": "^4.27.4",
    "should": "^13.2.3"
  },
  "engines": {
    "node": ">= 0.10.x"
  },
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "require": "./dist/cjs/index.cjs"
    },
    "./routes/help": {
      "import": "./lib/routes/help.js",
      "require": "./dist/cjs/routes/help.cjs"
    }
  },
  "files": [
    "/dist",
    "/lib"
  ],
  "homepage": "https://shell.js.org",
  "license": "MIT",
  "lint-staged": {
    "*.js": "npm run lint:fix",
    "*.md": "prettier -w"
  },
  "main": "./lib/index",
  "mocha": {
    "throw-deprecation": true,
    "require": [
      "should"
    ],
    "inline-diffs": true,
    "loader": "./test/loaders/coffee.js",
    "timeout": 10000,
    "reporter": "spec",
    "recursive": true
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/adaltas/node-shell.git",
    "directory": "packages/shell"
  },
  "scripts": {
    "build": "npx rollup -c",
    "lint:check": "npx eslint",
    "lint:fix": "npx eslint --fix",
    "lint:staged": "npx lint-staged",
    "preversion": "yarn run test",
    "pretest": "npm run build",
    "test": "mocha 'test/**/*.coffee' 'test/**/*.js'"
  },
  "type": "module",
  "gitHead": "a7452a2aa52cf8c14cdf546bd0feda3941efe367"
}
