{
  "name": "@run1t/npkill",
  "version": "2.0.0",
  "description": "This tool allows you to list any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space.",
  "main": "lib/index.js",
  "publishConfig": {
    "access": "public"
  },
  "bin": {
    "npkill": "lib/index.js"
  },
  "author": "Nya Garcia & Juan Torres",
  "repository": {
    "type": "git",
    "url": "https://github.com/zaldih/npkill"
  },
  "license": "MIT",
  "keywords": [
    "cli",
    "console",
    "npm",
    "node",
    "module",
    "clean",
    "interactive"
  ],
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "build": "tsc",
    "build-go-bin": "env GOOS=windows GOARCH=amd64 go build -o './src/bin/windows-find.exe' './src/utils' ",
    "build-go-bin-release": "env GOOS=windows GOARCH=amd64 go build -o './src/bin/windows-find.exe'  './src/utils' ",
    "start": "ts-node ./src/index.ts",
    "release": "npm run build && npm run build-go-bin-release && np",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "dependencies": {
    "ansi-escapes": "^4.1.0",
    "colors": "^1.3.3",
    "get-folder-size": "^2.0.1",
    "keypress": "^0.2.1",
    "node-emoji": "^1.10.0",
    "rxjs": "^6.5.2"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^8.0.0",
    "@types/jest": "^24.0.13",
    "@types/node": "^12.0.0",
    "commitlint": "^8.0.0",
    "husky": "^2.7.0",
    "jest": "^24.8.0",
    "lint-staged": "^8.2.1",
    "np": "^5.0.3",
    "pre-commit": "^1.2.2",
    "prettier": "^1.18.2",
    "remark-lint": "^6.0.5",
    "ts-jest": "^24.0.2",
    "ts-node": "^8.3.0",
    "tslint": "^5.18.0",
    "typescript": "^3.4.5"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "jest": {
    "transform": {
      "^.+\\.(t|j)sx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  },
  "lint-staged": {
    "*.{js,ts,css,json,md}": [
      "prettier --write",
      "git add"
    ]
  }
}
