From 531a304717c3bdbc95d0f71cdb7aaba9735e8e94 Mon Sep 17 00:00:00 2001 From: Filipp Riabchun Date: Fri, 12 Feb 2021 17:25:24 +0200 Subject: [PATCH] Fix npm audit warnings --- package.json | 6 +++--- src/storage/index.js | 2 +- src/token/get.js | 2 +- src/webstore/items.js | 2 +- test/specs/file-storage.test.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index e020b9f..ef9f5c6 100644 --- a/package.json +++ b/package.json @@ -24,12 +24,12 @@ "author": "Aleksey Tsvetkov (https://github.com/acvetkov)", "license": "ISC", "dependencies": { + "@hypnosphi/q-io": "^1.13.1", "bluebird": "^3.0.6", "debug": "^2.2.0", - "lodash": "^3.10.1", + "lodash": "^4.17.20", "mkdirp": "^0.5.1", - "q": "^1.4.1", - "q-io": "^1.13.1" + "q": "^1.4.1" }, "devDependencies": { "babel": "^5.8.34", diff --git a/src/storage/index.js b/src/storage/index.js index 9a91087..164ea5f 100644 --- a/src/storage/index.js +++ b/src/storage/index.js @@ -3,7 +3,7 @@ * @overview */ -import fs from 'q-io/fs'; +import fs from '@hypnosphi/q-io/fs'; import path from 'path'; import mkdirp from 'mkdirp'; import Promise from 'bluebird'; diff --git a/src/token/get.js b/src/token/get.js index 7e3de87..7c9745f 100644 --- a/src/token/get.js +++ b/src/token/get.js @@ -3,7 +3,7 @@ * @overview */ -import http from 'q-io/http'; +import http from '@hypnosphi/q-io/http'; import debug from 'debug'; import config from '../config/index'; diff --git a/src/webstore/items.js b/src/webstore/items.js index 8a73de9..5ea259f 100644 --- a/src/webstore/items.js +++ b/src/webstore/items.js @@ -3,7 +3,7 @@ * @overview */ -import http from 'q-io/http'; +import http from '@hypnosphi/q-io/http'; import debug from 'debug'; import config from '../config/index'; diff --git a/test/specs/file-storage.test.js b/test/specs/file-storage.test.js index 5931d5b..6aeebe2 100644 --- a/test/specs/file-storage.test.js +++ b/test/specs/file-storage.test.js @@ -4,7 +4,7 @@ */ import FileStorage from '../../src/storage/index'; -import fs from 'q-io/fs'; +import fs from '@hypnosphi/q-io/fs'; import path from 'path'; const NEW_FILE = path.resolve(__dirname, '../temp-directory/data.json');