clean up package.json
This commit is contained in:
parent
e1ccbae70a
commit
8b0159d099
3 changed files with 8 additions and 28 deletions
|
|
@ -1,7 +1,5 @@
|
|||
'use strict'
|
||||
|
||||
require('es6-promise').polyfill()
|
||||
|
||||
var http = require('http')
|
||||
var https = require('https')
|
||||
var express = require('express')
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
var BigNumber = require('bignumber.js')
|
||||
var pg = require('pg')
|
||||
var async = require('async')
|
||||
var _ = require('lodash')
|
||||
var R = require('ramda')
|
||||
|
||||
var logger = require('./logger')
|
||||
|
||||
|
|
@ -375,7 +375,7 @@ exports.sentCoins = function sentCoins (session, tx, authority, toSend, fee,
|
|||
connect(function (cerr, client, done) {
|
||||
if (cerr) return logger.error(cerr)
|
||||
|
||||
var newTx = _.clone(tx)
|
||||
var newTx = R.clone(tx)
|
||||
newTx.txHash = txHash
|
||||
newTx.error = error
|
||||
insertOutgoing(client, session, newTx, toSend.cryptoAtoms, toSend.fiat,
|
||||
|
|
|
|||
30
package.json
30
package.json
|
|
@ -6,22 +6,18 @@
|
|||
"license": "unlicense",
|
||||
"author": "Lamassu (https://lamassu.is)",
|
||||
"engines": {
|
||||
"node": "0.10.x"
|
||||
"node": "4.4.x"
|
||||
},
|
||||
"dependencies": {
|
||||
"async": "~0.2.9",
|
||||
"axios": "^0.9.1",
|
||||
"bignumber.js": "^2.3.0",
|
||||
"bluebird": "^3.3.4",
|
||||
"bunyan": "^1.8.1",
|
||||
"chalk": "^1.1.3",
|
||||
"es6-promise": "^3.1.2",
|
||||
"ethereumjs-wallet": "^0.5.1",
|
||||
"express": "~3.4.7",
|
||||
"inquirer": "^1.0.0",
|
||||
"joi": "^5.1.0",
|
||||
"lamassu-bitcoinaverage": "~1.0.0",
|
||||
"lamassu-bitcoind": "^1.1.0",
|
||||
"lamassu-bitgo": "^0.1.3",
|
||||
"lamassu-bitgo": "^0.2.1",
|
||||
"lamassu-bitpay": "~1.0.0",
|
||||
"lamassu-bitstamp": "^1.0.2",
|
||||
"lamassu-blockchain": "^1.1.3",
|
||||
|
|
@ -36,20 +32,13 @@
|
|||
"lamassu-kraken": "^1.0.1",
|
||||
"lamassu-smtp2go": "^1.0.3",
|
||||
"lamassu-snapcard": "^0.1.7",
|
||||
"lamassu-twilio": "^1.0.3",
|
||||
"lodash": "^2.4.1",
|
||||
"lamassu-twilio": "^1.1.0",
|
||||
"minimist": "0.0.8",
|
||||
"node-uuid": "^1.4.2",
|
||||
"numeral": "^1.5.3",
|
||||
"pg": "^4.5.1",
|
||||
"pg-promise": "^3.4.3",
|
||||
"pretty-ms": "^2.1.0",
|
||||
"prompt": "^1.0.0",
|
||||
"promptly": "^1.1.0",
|
||||
"ramda": "^0.19.1",
|
||||
"smtp-connection": "^2.3.2",
|
||||
"twilio": "^3.3.0-edge",
|
||||
"web3": "^0.15.3",
|
||||
"ramda": "^0.21.0",
|
||||
"wreck": "5.1.0"
|
||||
},
|
||||
"repository": {
|
||||
|
|
@ -64,12 +53,5 @@
|
|||
"scripts": {
|
||||
"test": "mocha --recursive test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^1.9.1",
|
||||
"chai-http": "^0.5.0",
|
||||
"git-rev": "^0.2.1",
|
||||
"lodash": "^2.4.1",
|
||||
"mocha": "^1.21.4",
|
||||
"mockery": "^1.4.0"
|
||||
}
|
||||
"devDependencies": {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue