-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "block_io",
"description": "Block.io API wrapper for node.js",
"keywords": [
"block.io",
"block_io",
"bitcoin",
"litecoin",
"dogecoin",
"wallet"
],
"version": "4.2.2",
"preferGlobal": false,
"homepage": "https://github.com/BlockIo/block_io-nodejs",
"author": "Patrick Lodder <[email protected]> (https://github.com/patricklodder)",
"repository": {
"type": "git",
"url": "git://github.com/BlockIo/block_io-nodejs.git"
},
"bugs": {
"url": "https://github.com/BlockIo/block_io-nodejs/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/block_io.js",
"dependencies": {
"axios": "^1.5.1",
"bitcoinjs-lib": "^6.1.5",
"ecpair": "^2.1.0",
"pbkdf2": "^3.1.2",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"eslint": "^8.0",
"tape": "^5.6"
},
"scripts": {
"test": "node test/unit/cryptohelper.js && node test/unit/key.js && node test/unit/bitcoinjs-lib.js && node test/unit/prepare_transaction.js && node test/unit/httpsclient.js && npx eslint ."
},
"license": "MIT",
"engines": {
"node": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^14"
}
}