bitcore-wallet-service/package.json

89 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2015-01-27 05:18:45 -08:00
{
2015-02-20 11:59:19 -08:00
"name": "bitcore-wallet-service",
"description": "A service for Mutisig HD Bitcoin Wallets",
"author": "BitPay Inc",
2018-03-13 11:06:50 -07:00
"version": "2.4.0",
2016-11-30 05:53:33 -08:00
"licence": "MIT",
2015-02-20 11:59:19 -08:00
"keywords": [
"bitcoin",
"copay",
"multisig",
2015-03-04 06:41:34 -08:00
"wallet",
2016-01-19 10:30:49 -08:00
"bitcore",
"BWS"
2015-02-20 11:59:19 -08:00
],
"repository": {
"url": "git@github.com:BTCPrivate/bitcore-wallet-service.git",
2015-02-20 11:59:19 -08:00
"type": "git"
},
"bugs": {
"url": "https://github.com/BTCPrivate/bitcore-wallet-service/issues"
2015-02-20 11:59:19 -08:00
},
"dependencies": {
2016-02-16 12:09:53 -08:00
"async": "^0.9.2",
"bitcore-lib": "ch4ot1c/bitcore-lib",
"bitcore-lib-cash": "^0.17.0",
2015-02-20 11:59:19 -08:00
"body-parser": "^1.11.0",
2016-08-09 11:16:45 -07:00
"compression": "^1.6.2",
2015-02-20 11:59:19 -08:00
"coveralls": "^2.11.2",
"email-validator": "^1.0.1",
2015-02-20 11:59:19 -08:00
"express": "^4.10.0",
2016-11-30 05:53:33 -08:00
"express-rate-limit": "^2.6.0",
2015-02-20 11:59:19 -08:00
"inherits": "^2.0.1",
2015-10-30 11:24:47 -07:00
"json-stable-stringify": "^1.0.0",
2015-04-07 12:34:48 -07:00
"locker": "^0.1.0",
2015-04-08 11:02:33 -07:00
"locker-server": "^0.1.3",
2015-08-11 08:16:13 -07:00
"lodash": "^3.10.1",
2015-02-20 11:59:19 -08:00
"mocha-lcov-reporter": "0.0.1",
2015-05-14 08:06:41 -07:00
"moment": "^2.10.3",
2015-04-20 08:03:27 -07:00
"mongodb": "^2.0.27",
2015-02-20 11:59:19 -08:00
"morgan": "*",
2015-06-08 13:21:52 -07:00
"mustache": "^2.1.0",
2015-04-29 08:10:01 -07:00
"nodemailer": "^1.3.4",
2016-05-19 09:11:57 -07:00
"nodemailer-sendgrid-transport": "^0.2.0",
2015-02-20 11:59:19 -08:00
"npmlog": "^0.1.1",
"preconditions": "^1.0.7",
2015-02-23 16:02:26 -08:00
"read": "^1.0.5",
2015-02-20 11:59:19 -08:00
"request": "^2.53.0",
"secp256k1": "^3.1.0",
2015-02-20 11:59:19 -08:00
"sjcl": "^1.0.2",
2015-03-13 06:47:10 -07:00
"socket.io": "^1.3.5",
2015-03-30 06:43:15 -07:00
"socket.io-client": "^1.3.5",
2015-04-15 14:34:48 -07:00
"sticky-session": "^0.1.0",
2015-02-20 11:59:19 -08:00
"uuid": "*"
},
"devDependencies": {
"chai": "^1.9.1",
2015-02-24 12:50:57 -08:00
"istanbul": "*",
2018-01-13 06:16:57 -08:00
"jsdoc": "^3.5.5",
2015-02-24 12:50:57 -08:00
"memdown": "^1.0.0",
2015-02-20 11:59:19 -08:00
"mocha": "^1.18.2",
"proxyquire": "^1.7.2",
2015-08-20 11:30:33 -07:00
"sinon": "1.10.3",
2015-04-20 13:04:26 -07:00
"supertest": "*",
2017-10-31 15:21:36 -07:00
"tingodb": "^0.5.1"
2015-02-20 11:59:19 -08:00
},
"scripts": {
"start": "./start.sh",
"stop": "./stop.sh",
2015-02-20 11:59:19 -08:00
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"test": "./node_modules/.bin/mocha",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
2015-03-04 06:41:34 -08:00
},
"bitcoreNode": "./bitcorenode",
"contributors": [
{
"name": "Braydon Fuller",
"email": "braydon@bitpay.com"
},
{
"name": "Ivan Socolsky",
"email": "ivan@bitpay.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
]
2015-01-27 05:18:45 -08:00
}