blocktrail /
blocktrail-sdk-nodejs
| 1 | { |
||
| 2 | "name": "blocktrail-sdk", |
||
| 3 | "description": "BlockTrail's Developer Friendly API binding for NodeJS", |
||
| 4 | "keywords": [ |
||
| 5 | "blocktrail", |
||
| 6 | "bitcoin", |
||
| 7 | "sdk", |
||
| 8 | "api", |
||
| 9 | "blockchain", |
||
| 10 | "payment", |
||
| 11 | "bitcoin data", |
||
| 12 | "wallet", |
||
| 13 | "multi-signature", |
||
| 14 | "transaction" |
||
| 15 | ], |
||
| 16 | "version": "3.4.0", |
||
| 17 | "homepage": "https://www.blocktrail.com/api/docs/lang/nodejs", |
||
| 18 | "license": "MIT", |
||
| 19 | "repository": { |
||
| 20 | "type": "git", |
||
| 21 | "url": "git://github.com/blocktrail/blocktrail-sdk-nodejs.git" |
||
| 22 | }, |
||
| 23 | "bugs": { |
||
| 24 | "url": "http://github.com/blocktrail/blocktrail-sdk-nodejs/issues" |
||
| 25 | }, |
||
| 26 | "engines": { |
||
| 27 | "node": ">= 5.10.0" |
||
| 28 | }, |
||
| 29 | "main": "./main.js", |
||
| 30 | "browser": { |
||
| 31 | "./lib/backup_generator.js": "./lib/backup_generator-browser.js", |
||
| 32 | "./lib/pbkdf2_sha512.js": "./lib/pbkdf2_sha512-asm.js" |
||
| 33 | }, |
||
| 34 | "dependencies": { |
||
| 35 | "assert-plus": "0.1.5", |
||
| 36 | "async": "0.9.0", |
||
| 37 | "bip39": "git://github.com/blocktrail/bip39.git#sjcl-browser-bip39", |
||
| 38 | "bitcoinjs-lib": "git://github.com/blocktrail/bitcoinjs-lib.git#374d5897b296630ae2f81a5df2b46eb367e4e99b", |
||
| 39 | "bitcoinjs-message": "^1.0.1", |
||
| 40 | "bops": "0.0.6", |
||
| 41 | "bowser": "^0.7.2", |
||
| 42 | "colors": "*", |
||
| 43 | "create-hash": "^1.1.0", |
||
| 44 | "create-hmac": "^1.1.3", |
||
| 45 | "crypto-js": "^3.1.5", |
||
| 46 | "debug": "0.8.1", |
||
| 47 | "lodash": "~4.17.2", |
||
| 48 | "promise": "^6.1.0", |
||
| 49 | "q": "1.0.1", |
||
| 50 | "randombytes": "^2.0.1", |
||
| 51 | "sjcl": "git://github.com/blocktrail/sjcl.git#minify-library", |
||
| 52 | "superagent": "^0.21.0", |
||
| 53 | "superagent-http-signature": "0.1.3", |
||
| 54 | "superagent-promise": "^0.2.0", |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 55 | "webworkify": "^1.4.0" |
||
| 56 | }, |
||
| 57 | "author": { |
||
| 58 | "name": "Ruben de Vries <[email protected]>" |
||
| 59 | }, |
||
| 60 | "contributors": [ |
||
| 61 | { |
||
| 62 | "name": "Ruben de Vries", |
||
| 63 | "email": "[email protected]" |
||
| 64 | }, |
||
| 65 | { |
||
| 66 | "name": "Oisin Akiboye Conolly", |
||
| 67 | "email": "[email protected]" |
||
| 68 | } |
||
| 69 | ], |
||
| 70 | "devDependencies": { |
||
| 71 | "blocktrail-sdk-backup-generator": "0.1.0", |
||
| 72 | "brfs": "*", |
||
| 73 | "browserify": "*", |
||
| 74 | "coveralls": "^2.13.1", |
||
| 75 | "grunt": "~0.4.2", |
||
| 76 | "grunt-browserify": "git://github.com/jmreidy/grunt-browserify.git#4f96beb75d27fdebc4359e08e7db4c514f6265a8", |
||
| 77 | "grunt-contrib-concat": "~0.5.1", |
||
| 78 | "grunt-contrib-connect": "^0.7.1", |
||
| 79 | "grunt-contrib-uglify": "~2.0.0", |
||
| 80 | "grunt-contrib-watch": "~0.6.1", |
||
| 81 | "grunt-exec": "^1.0.1", |
||
| 82 | "grunt-notify": "~0.2.17", |
||
| 83 | "grunt-saucelabs": "git://github.com/blocktrail/grunt-saucelabs.git#92615f964444a7f304bfee41cb13627b0457f85d", |
||
| 84 | "grunt-template": "^1.0.0", |
||
| 85 | "jscs": "~3.0.7", |
||
| 86 | "jshint": "~2.9.1", |
||
| 87 | "mocha": "*", |
||
| 88 | "nyc": "^11.2.1", |
||
| 89 | "watchify": "*" |
||
| 90 | }, |
||
| 91 | "scripts": { |
||
| 92 | "test": "mocha", |
||
| 93 | "coverage-test": "nyc --reporter=html --reporter=text mocha", |
||
| 94 | "browserify": "grunt build", |
||
| 95 | "coverage": "nyc report --reporter=text-lcov | coveralls", |
||
| 96 | "lint": "./node_modules/jscs/bin/jscs main.js lib/ test/ && ./node_modules/jscs/bin/jscs main.js main.js lib/ test/" |
||
| 97 | } |
||
| 98 | } |
||
| 99 |