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.6.8", |
||
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 | "files": [ |
||
31 | "bower.json", |
||
32 | "README.md", |
||
33 | "LICENSE.md", |
||
34 | "main.js", |
||
35 | "main-with-backup-generator.js", |
||
36 | "lib/", |
||
37 | "vendor/", |
||
38 | "examples/", |
||
39 | "doc/", |
||
40 | "build/" |
||
41 | ], |
||
42 | "browser": { |
||
43 | "./lib/backup_generator.js": "./lib/backup_generator-browser.js", |
||
44 | "./lib/pbkdf2_sha512.js": "./lib/pbkdf2_sha512-browser.js", |
||
45 | "./lib/pkginfo.js": "./lib/pkginfo-browser.js" |
||
46 | }, |
||
47 | "dependencies": { |
||
48 | "assert-plus": "0.1.5", |
||
49 | "async": "0.9.0", |
||
50 | "bip39": "git://github.com/blocktrail/bip39.git#sjcl-browser-bip39", |
||
51 | "bitcoinjs-lib": "git://github.com/blocktrail/bitcoinjs-lib.git#137add06e7bba65efa0e52cf10391177e614f13f", |
||
52 | "bitcoinjs-message": "^1.0.1", |
||
53 | "bops": "0.0.6", |
||
54 | "bowser": "^0.7.2", |
||
55 | "colors": "*", |
||
56 | "create-hash": "^1.1.0", |
||
57 | "create-hmac": "^1.1.3", |
||
58 | "crypto-js": "^3.1.5", |
||
59 | "debug": "0.8.1", |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
60 | "lodash": "~4.17.2", |
||
61 | "pkginfo": "^0.4.1", |
||
62 | "promise": "^6.1.0", |
||
63 | "q": "1.0.1", |
||
64 | "randombytes": "^2.0.1", |
||
65 | "sjcl": "git://github.com/blocktrail/sjcl.git#minify-library", |
||
66 | "superagent": "^0.21.0", |
||
67 | "superagent-http-signature": "0.1.3", |
||
68 | "superagent-promise": "^0.2.0", |
||
0 ignored issues
–
show
This dependency has a security advisory: Large gzip Denial of Service
Recommendation: Update to version 3.7.0 or greater. ![]() |
|||
69 | "webworkify": "^1.4.0" |
||
70 | }, |
||
71 | "author": { |
||
72 | "name": "Ruben de Vries <[email protected]>" |
||
73 | }, |
||
74 | "contributors": [ |
||
75 | { |
||
76 | "name": "Ruben de Vries", |
||
77 | "email": "[email protected]" |
||
78 | }, |
||
79 | { |
||
80 | "name": "Oisin Akiboye Conolly", |
||
81 | "email": "[email protected]" |
||
82 | } |
||
83 | ], |
||
84 | "devDependencies": { |
||
85 | "blocktrail-sdk-backup-generator": "0.1.0", |
||
86 | "brfs": "*", |
||
87 | "browserify": "*", |
||
88 | "browserify-versionify": "^1.0.6", |
||
89 | "coveralls": "^2.13.1", |
||
90 | "grunt": "~0.4.2", |
||
91 | "grunt-browserify": "git://github.com/jmreidy/grunt-browserify.git#4f96beb75d27fdebc4359e08e7db4c514f6265a8", |
||
92 | "grunt-contrib-concat": "~0.5.1", |
||
93 | "grunt-contrib-connect": "^0.7.1", |
||
94 | "grunt-contrib-uglify": "^3.2.1", |
||
95 | "grunt-contrib-watch": "~0.6.1", |
||
96 | "grunt-exec": "^1.0.1", |
||
97 | "grunt-notify": "~0.2.17", |
||
98 | "grunt-saucelabs": "git://github.com/blocktrail/grunt-saucelabs.git#92615f964444a7f304bfee41cb13627b0457f85d", |
||
99 | "grunt-template": "^1.0.0", |
||
100 | "jscs": "~3.0.7", |
||
101 | "jshint": "~2.9.1", |
||
102 | "mocha": "*", |
||
103 | "nyc": "^11.2.1", |
||
104 | "watchify": "*" |
||
105 | }, |
||
106 | "scripts": { |
||
107 | "test": "mocha", |
||
108 | "coverage-test": "nyc --reporter=html --reporter=text mocha", |
||
109 | "browserify": "grunt build", |
||
110 | "coverage": "nyc report --reporter=text-lcov | coveralls", |
||
111 | "lint": "./node_modules/jscs/bin/jscs main.js lib/ test/ && ./node_modules/jscs/bin/jscs main.js main.js lib/ test/" |
||
112 | } |
||
113 | } |
||
114 |