Skip to content

Commit

Permalink
updated package.json with correct repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
manu354 committed Jul 10, 2017
1 parent 053072e commit ca63a88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
var socket = io();

socket.on('news', function (data) {
console.log(data);1
$('#messages').empty();
for(var i = data.length-1; i >= 0 ; i--) {
$('#messages').append($('<li>').text(data[i]));
Expand Down
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"name": "arbittrex",
"name": "crypto-arbitrage",
"version": "1.1.0",
"description": "An arbitrage bot",
"main": "main.js",
"engines":{"node":"8.0.0"},
"engines": {
"node": "8.0.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"express": "^4.15.3",
Expand All @@ -18,7 +20,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/manu354/arbitrage.git"
"url": "git+https://github.com/manu354/crypto-arbitrage.git"
},
"keywords": [
"bittrex",
Expand All @@ -27,7 +29,7 @@
"author": "Manu Masson",
"license": "GNU",
"bugs": {
"url": "https://github.com/manu354/arbitrage/issues"
"url": "https://github.com/manu354/crypto-arbitrage/issues"
},
"homepage": "https://github.com/manu354/arbitrage#readme"
"homepage": "manu354.github.io/crypto-arbitrage"
}

0 comments on commit ca63a88

Please sign in to comment.