From fd09ef984810fd653228cc26cd2f37af7ca9261a Mon Sep 17 00:00:00 2001 From: Antti Korpi Date: Tue, 23 Jan 2018 21:56:39 +0100 Subject: [PATCH] Nail devDependencies to specific version This documents what versions it's supposed to work with, and reduces potential future confusion if contributors accidentally work with different tool versions. --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index ab47b61..203181a 100644 --- a/package.json +++ b/package.json @@ -40,11 +40,11 @@ "node": "*" }, "devDependencies": { - "mocha": "*", - "should": "*", - "sax": "*", - "async": "*", - "sinon": "*" + "async": "^2.6.0", + "mocha": "^5.0.0", + "sax": "^1.2.4", + "should": "^13.2.1", + "sinon": "^4.2.1" }, "scripts": { "test": "node test-runner.js",