bitcore-wallet-service/package.json

74 lines
1.9 KiB
JSON
Raw 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",
2015-04-15 14:34:48 -07:00
"version": "0.0.26",
2015-02-20 11:59:19 -08:00
"keywords": [
"bitcoin",
"copay",
"multisig",
2015-03-04 06:41:34 -08:00
"wallet",
"bitcore"
2015-02-20 11:59:19 -08:00
],
"repository": {
"url": "git@github.com:bitpay/bitcore-wallet-service.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bitpay/bitcore-wallet-service/issues"
},
"dependencies": {
"async": "^0.9.0",
2015-04-02 13:01:44 -07:00
"bitcore": "^0.11.6",
2015-04-02 11:26:17 -07:00
"bitcore-explorers": "^0.10.3",
2015-04-02 13:01:44 -07:00
"bitcore-wallet-utils": "0.0.12",
2015-02-20 11:59:19 -08:00
"body-parser": "^1.11.0",
"coveralls": "^2.11.2",
"express": "^4.10.0",
"inherits": "^2.0.1",
"leveldown": "^0.10.0",
"levelup": "^0.19.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-03-03 13:48:10 -08:00
"lodash": "^3.3.1",
2015-02-20 11:59:19 -08:00
"mocha-lcov-reporter": "0.0.1",
2015-04-20 08:03:27 -07:00
"mongodb": "^2.0.27",
2015-02-20 11:59:19 -08:00
"morgan": "*",
2015-04-05 11:42:56 -07:00
"multilevel": "^6.1.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",
"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": "*",
"jsdoc": "^3.3.0-beta1",
"memdown": "^1.0.0",
2015-02-20 11:59:19 -08:00
"mocha": "^1.18.2",
"sinon": "^1.10.3",
2015-02-24 12:50:57 -08:00
"supertest": "*"
2015-02-20 11:59:19 -08:00
},
"scripts": {
2015-04-06 09:27:00 -07:00
"start": "node bws.js",
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
},
2015-04-15 14:34:48 -07:00
"contributors": [
{
"name": "Ivan Socolsky",
"email": "ivan@bitpay.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
]
2015-01-27 05:18:45 -08:00
}