From 9bc77cfdc1496878f1541ba85f0ca816c6d3e254 Mon Sep 17 00:00:00 2001 From: Andre Marcelo-Tanner Date: Mon, 14 Aug 2017 12:24:25 +0800 Subject: [PATCH] prepublish lifecycle script has been deprecated in npm@^4, using prepublishOnly and prepare now See http://blog.lholmquist.org/npm-prepublish-changes/ --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index eb868fa..e340a01 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,8 @@ "coverage": "istanbul cover _mocha -x '**/fixture/**' -- -R spec", "coveralls": "nyc report --reporter=text-lcov | coveralls", "lint": "standard", - "prepublish": "npm run build", + "prepublishOnly": "npm run build", + "prepare": "npm run build", "pretest": "npm run lint", "serve": "ss fixture/onmount/_docpress", "test": "nyc mocha",