From 7eead4d82240d6bf72d4e9c8407ec3be8ae52ac2 Mon Sep 17 00:00:00 2001 From: Martin Heidegger Date: Tue, 2 Aug 2016 08:54:22 +0200 Subject: [PATCH] Moved general dependencies into dependencies This project depends on the specified libraries. Due to the nature of npm@3 the dependencies are usually installed one level above (with npdynamodb) but since the version of `lodash` had a significant [upgrade to 4.0.0](https://github.com/lodash/lodash/wiki/Changelog#v400) which breaks the dependencies. --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ad0825d..8b74e60 100644 --- a/package.json +++ b/package.json @@ -22,10 +22,12 @@ "url": "https://github.com/noppoMan/npdynamodb-typecast/issues" }, "homepage": "https://github.com/noppoMan/npdynamodb-typecast", + "dependencies": { + "bluebird": "^2.9.34", + "lodash": "^3.10.1" + }, "devDependencies": { "aws-sdk": "^2.1.42", - "bluebird": "^2.9.34", - "lodash": "^3.10.1", "npdynamodb": "^0.2.5" } }