From c41d2f1b95c7273fe744f7e70199a8daecf0b34b Mon Sep 17 00:00:00 2001 From: Eric Martindale Date: Tue, 21 Jan 2014 00:26:28 +0000 Subject: [PATCH] Move external dependencies into package.json. --- README.md | 30 ------------------------------ package.json | 5 +++-- 2 files changed, 3 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index 8c1ed48..efc9ae0 100644 --- a/README.md +++ b/README.md @@ -57,36 +57,6 @@ $ npm install -g bower If you get an error, please check the next section "Post-install" -### Post-install (post-dependecies) - - Get bufferput package from Github repository: - - $ git clone git@github.com:gasteve/node-bufferput.git - - Create symbolic link of node-bufferput in your insight folder: - - $ cd /insight/node_modules - $ ln -s /node-bufferput bufferput - - Get bitcore from github repository: - - Get bitcore from github repository: - - $ git clone https://github.com/bitpay/bitcore.git - - $ cd bitcore - - $ npm install - - Then create a symbolic link from this to your insight repository. We need to - use bitcore from github, not with npm for now: - - $ cd insight/node_modules - - $ rm -R bitcore - - $ ln -s /bitcore - ## Syncing old blockchain data Run sync from insight repository (to save old blocks and transactions in MongoDB): diff --git a/package.json b/package.json index 3078ba4..c0fa2e7 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,6 @@ "mongoose": "~3.8.3", "lodash": "~2.4.1", "bower": "~1.2.8", - "bitcore": "*", "buffertools": "*", "grunt": "~0.4.2", "grunt-cli": "~0.1.11", @@ -75,7 +74,9 @@ "socket.io": "~0.9.16", "moment": "~2.5.0", "sinon": "~1.7.3", - "chai": "~1.8.1" + "chai": "~1.8.1", + "bitcore": "git://github.com/bitpay/bitcore.git", + "bufferput": "git://github.com/bitpay/node-bufferput.git" }, "devDependencies": { "grunt-contrib-watch": "latest",