{
  "name": "can-npm-publish",
  "version": "1.3.6",
  "description": "A command line tool that check to see if `npm publish` is possible.",
  "keywords": [
    "cli",
    "npm",
    "publish"
  ],
  "homepage": "https://github.com/azu/can-npm-publish",
  "bugs": {
    "url": "https://github.com/azu/can-npm-publish/issues"
  },
  "license": "MIT",
  "author": "azu",
  "files": [
    "bin/",
    "lib/",
    "src/"
  ],
  "main": "lib/can-npm-publish.js",
  "bin": {
    "can-npm-publish": "./bin/cmd.js"
  },
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/azu/can-npm-publish.git"
  },
  "scripts": {
    "test": "mocha test",
    "precommit": "lint-staged",
    "postcommit": "git reset",
    "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
    "prepare": "git config --local core.hooksPath .githooks"
  },
  "dependencies": {
    "cross-spawn": "^7.0.3",
    "extract-first-json": "^1.0.1",
    "meow": "^9.0.0",
    "read-pkg": "^5.0.0",
    "validate-npm-package-name": "^3.0.0"
  },
  "devDependencies": {
    "lint-staged": "^11.0.0",
    "mocha": "^9.0.0",
    "prettier": "^2.3.1"
  },
  "prettier": {
    "singleQuote": false,
    "printWidth": 120,
    "tabWidth": 4,
    "trailingComma": "none"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css}": [
      "prettier --write"
    ]
  },
  "volta": {
    "node": "16.4.0",
    "npm": "7.18.1"
  }
}
