From 2f91e63efff2d181db76a41b84d41fc1ff69f070 Mon Sep 17 00:00:00 2001 From: Romain Prieto Date: Tue, 23 May 2017 08:34:38 +1000 Subject: [PATCH] Add require-lint to check package.json dependencies --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index bcb937b..14f3acd 100644 --- a/package.json +++ b/package.json @@ -16,13 +16,14 @@ }, "main": "src/index.js", "scripts": { - "test": "standard && ./node_modules/.bin/mocha" + "test": "require-lint && standard && mocha" }, "peerDependencies": { "restify": "2.6.x - 4.3.x" }, "devDependencies": { "mocha": "~3.4.1", + "require-lint": "^1.1.2", "restify": "~4.3.0", "should": "~11.2.1", "standard": "^10.0.2",