{
  "name": "@semantic-release/last-release-npm",
  "description": "determine the version of the last release via the npm registry",
  "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
  "bugs": {
    "url": "https://github.com/semantic-release/last-release-npm/issues"
  },
  "config": {
    "nyc": {
      "exclude": [
        ".test",
        "node_modules"
      ]
    }
  },
  "dependencies": {
    "@semantic-release/error": "^1.0.0",
    "npm-registry-client": "^7.0.1",
    "npmlog": "^1.2.1"
  },
  "devDependencies": {
    "babel": "^5.8.21",
    "coveralls": "^2.11.2",
    "lodash": "^3.10.1",
    "mkdirp": "^0.5.1",
    "nock": "^2.10.0",
    "nyc": "^3.0.0",
    "rimraf": "^2.4.2",
    "semantic-release": "^4.0.3",
    "standard": "^5.1.0",
    "tap": "^1.3.2"
  },
  "homepage": "https://github.com/semantic-release/last-release-npm#readme",
  "keywords": [
    "npm",
    "registry",
    "semantic-release",
    "version"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "publishConfig": {
    "access": "public",
    "tag": "next"
  },
  "release": {
    "branch": "next"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/semantic-release/last-release-npm.git"
  },
  "scripts": {
    "build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
    "build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test",
    "coverage": "nyc report",
    "coverage:upload": "npm run coverage -- --reporter=text-lcov | coveralls",
    "pretest:suite": "npm run build && npm run build:tests",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "test": "npm run test:style && npm run test:suite",
    "test:style": "standard",
    "test:suite": "nyc tap --no-cov .test/specs/*.js"
  },
  "version": "1.2.1"
}