{
  "name": "is-name-taken",
  "version": "2.0.0",
  "description": "Check if an NPM package name is taken",
  "license": "MIT",
  "author": {
    "name": "Connor White",
    "email": "connor.bcw@gmail.com",
    "url": "https://connorwhite.org"
  },
  "homepage": "https://connorwhite.org/github/is-name-taken",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bconnorwhite/is-name-taken.git"
  },
  "keywords": [
    "is",
    "npm",
    "package",
    "packages",
    "name",
    "taken",
    "available",
    "conflict",
    "conflicts",
    "open",
    "used",
    "if"
  ],
  "files": [
    "build"
  ],
  "main": "./build/index.js",
  "scripts": {
    "build": "bob build",
    "commit": "bob commit",
    "lint": "bob lint",
    "release": "bob publish",
    "test": "bob test"
  },
  "dependencies": {
    "all-package-names": "^2.0.2",
    "package-name-conflict": "^1.0.3",
    "validate-npm-package-name": "^3.0.0"
  },
  "devDependencies": {
    "@bconnorwhite/bob": "^2.9.4",
    "@types/validate-npm-package-name": "^3.0.2"
  },
  "eslintConfig": {
    "extends": "eslint-config-bob"
  },
  "husky": {
    "hooks": {
      "commit-msg": "bob lint commit"
    }
  },
  "npmpackagejsonlint": {
    "extends": "npm-package-json-lint-config-bob"
  }
}