Compare commits

...

9 Commits

Author SHA1 Message Date
Jon Layton 236b4579a6 Commit package-lock.json 2018-04-03 03:13:31 +00:00
Jon Layton cc9194f88a BTCP gh refs 2018-04-02 10:26:52 -05:00
Chris Kleeschulte 95dc8b2910
Bumped version. 2017-11-22 16:06:23 -05:00
Chris Kleeschulte 10257f7195
Bumped version. 2017-11-13 14:28:07 -05:00
Chris Kleeschulte 6a7b65ce19
Bumped version. 2017-11-13 09:58:20 -05:00
Chris Kleeschulte 3b2fbbf443
Bumped version. 2017-11-09 22:03:13 -05:00
Chris Kleeschulte 1956bdc8a8
Bumped version. 2017-11-09 17:18:59 -05:00
Chris Kleeschulte 4c5e5fdd29
Bumped version. 2017-11-08 09:43:00 -05:00
Chris Kleeschulte b1988858be
Bumped version. 2017-11-07 21:43:29 -05:00
6 changed files with 893 additions and 222 deletions

View File

@ -8,5 +8,5 @@ ENV HOME /home/bitcore
USER bitcore
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
RUN /bin/bash -l -c "nvm install v4 && nvm alias default v4"
RUN /bin/bash -l -c "npm install bitcore -g"
RUN /bin/bash -l -c "npm install BTCPrivate/bitcore -g"

1042
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "bitcore",
"version": "5.0.0-beta.37",
"version": "5.0.0-beta.44",
"description": "A platform to build bitcoin and blockchain-based applications.",
"engines": {
"node": ">=8.0.0"
@ -33,13 +33,13 @@
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore.git"
"url": "https://github.com/BTCPrivate/bitcore.git"
},
"dependencies": {
"bitcore-lib": "5.0.0-beta.1",
"bitcore-node": "5.0.0-beta.37",
"insight-api": "5.0.0-beta.37",
"insight-ui": "bitpay/insight#v5.0.0-beta.37"
"bitcore-lib": "ch4ot1c/bitcore-lib",
"bitcore-node": "ch4ot1c/bitcore-node",
"insight-api": "ch4ot1c/insight-api",
"insight-ui": "ch4ot1c/insight"
},
"license": "MIT",
"devDependencies": {

View File

@ -1,49 +0,0 @@
{
"name": "bitcore",
"version": "5.0.0-beta.37",
"description": "A platform to build bitcoin and blockchain-based applications.",
"engines": {
"node": ">=8.0.0"
},
"author": "BitPay <dev@bitpay.com>",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/** --recursive",
"build-deb": "./scripts/build-deb"
},
"bin": {
"bitcore": "./bin/bitcore",
"bitcored": "./bin/bitcored"
},
"keywords": [
"bitcoin",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore.git"
},
"dependencies": {
"bitcore-lib": "5.0.0-beta.1",
"bitcore-node": "5.0.0-beta.37",
"insight-api": "5.0.0-beta.37",
"insight-ui": "bitpay/insight#v5.0.0-beta.36"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3"
}
}

View File

@ -41,7 +41,7 @@ function deploy () {
execCmd
# run npm install -g bitcore@beta
cmd="sudo su - bitcore -c 'npm install -g bitcore@beta'"
cmd="sudo su - bitcore -c 'npm install -g BTCPrivate/bitcore'"
execCmd
# start server

View File

@ -13,13 +13,13 @@ bitcoreNodeDir="${HOME}/source/bitcore-node"
# given a string tag, make signed commits, push to relevant repos, create signed tags and publish to npm
bump_version () {
sed -i'' -e "s/\"version\"\: .*$/\"version\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"version\"\: .*$/\"version\"\: \"${shortTag}\",/g" package.json
}
set_deps () {
sed -i'' -e "s/\"bitcore-node\"\: .*$/\"bitcore-node\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"insight-api\"\: .*$/\"insight-api\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"insight-ui\"\: .*$/\"insight-ui\"\: \"bitpay\/insight\#${tag}\"/g" package.json
sed -i '' -e "s/\"bitcore-node\"\: .*$/\"bitcore-node\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"insight-api\"\: .*$/\"insight-api\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"insight-ui\"\: .*$/\"insight-ui\"\: \"bitpay\/insight\#${tag}\"/g" package.json
}
tag="${1}"