{
    "name": "npm-pack-all",
    "version": "1.12.7",
    "description": "A simple utility to package all node_modules dependencies when running `npm pack` (not devDependencies)",
    "keywords": [
        "npm",
        "pack",
        "yarn",
        "package",
        "artifact",
        "dependencies",
        "pack all dependencies",
        "bundle"
    ],
    "repository": "https://github.com/kleingtm/npm-pack-all.git",
    "author": "Tom Kleingers <kleingtm@gmail.com>",
    "license": "MIT",
    "main": "index.js",
    "bin": "index.js",
    "dependencies": {
        "lodash": "^4.17.11",
        "minimist": "^1.2.5",
        "shelljs": "^0.8.3"
    },
    "devDependencies": {
        "coveralls": "^3.0.4",
        "eslint": "^5.16.0",
        "eslint-config-prettier": "^5.0.0",
        "eslint-plugin-json": "^1.4.0",
        "eslint-plugin-prettier": "^3.1.0",
        "husky": "^2.4.1",
        "jest": "^24.8.0",
        "prettier": "^1.18.2"
    },
    "scripts": {
        "compile": "npx nexe index.js --output bin/npm-pack-all",
        "release": "npm config set loglevel verbose && npm publish --registry=https://registry.npmjs.org",
        "lint": "eslint . --fix",
        "husky": "yarn lint && yarn test",
        "test": "jest",
        "deploy": "pkg . --options expose-gc --out-path bin ",
        "env": "printenv"
    },
    "husky": {
        "hooks": {
            "pre-commit": "yarn lint && yarn test"
        }
    },
    "engines": {
        "node": ">=6.4.0"
    },
    "bundledDependencies": [
        "lodash",
        "minimist",
        "shelljs"
    ]
}
