From dd9ceba0babbdfd51be4deda5758356c1018ba2e Mon Sep 17 00:00:00 2001 From: Nate Smith Date: Wed, 15 Jan 2020 14:59:12 -0800 Subject: [PATCH 1/2] update dependencies for tests --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index d77efbb..6b4f7cc 100644 --- a/package.json +++ b/package.json @@ -9,14 +9,14 @@ "sharedb": "^1.0.0-beta" }, "devDependencies": { - "coveralls": "^2.11.8", - "expect.js": "^0.3.1", - "istanbul": "^0.4.2", - "mocha": "^2.3.3" + "chai": "^4.2.0", + "coveralls": "^3.0.7", + "mocha": "^6.2.2", + "nyc": "^14.1.1" }, "scripts": { - "test": "node_modules/.bin/mocha", - "test-cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha" + "test": "./node_modules/.bin/mocha", + "test-cover": "node_modules/nyc/bin/nyc.js --temp-dir=coverage -r text -r lcov node_modules/mocha/bin/_mocha" }, "repository": "git://github.com/share/sharedb-redis-pubsub.git", "author": "Nate Smith", From a5ecf8ed1f265c7ca5c1db274c5369cb69b44d5c Mon Sep 17 00:00:00 2001 From: Nate Smith Date: Wed, 15 Jan 2020 14:59:36 -0800 Subject: [PATCH 2/2] sharedb: ^1.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6b4f7cc..bdee3e7 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "dependencies": { "async": "^1.5.0", "redis": "^2.6.0", - "sharedb": "^1.0.0-beta" + "sharedb": "^1.0.0" }, "devDependencies": { "chai": "^4.2.0",