-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.24 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
46
47
48
49
50
51
52
53
{
"name": "btc-bridge",
"version": "0.3.0",
"description": "A simple Bitcoin library for broadcasting transactions and querying chain state over RPC and/or 3rd party provider's APIs",
"keywords": [
"bitcoin",
"anchor",
"blockchain",
"btc",
"opreturn"
],
"main": "src/index.js",
"repository": "https://github.com/Tierion/btc-bridge.git",
"author": "Jason Bukowski <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.0.0",
"lint-staged": "^9.1.0",
"prettier": "^1.17.0"
},
"dependencies": {
"async-retry": "^1.2.3",
"bignumber.js": "^9.0.0",
"bitcoinjs-lib": "^5.0.5",
"bluebird": "^3.5.5",
"lnrpc-node-client": "^1.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}