forked from harmony-one/onebtc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "onebtc.sdk",
"version": "1.1.9",
"description": "ONE-BTC SDK",
"main": "./lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"start": "node lib/index.js",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint . --ext .ts",
"prettier --write --ignore-unknown"
]
},
"repository": {
"type": "git",
"url": "https://github.com/harmony-one/onebtc.sdk"
},
"bin": "./lib",
"keywords": [],
"author": "harmony",
"license": "ISC",
"devDependencies": {
"@types/bip39": "^3.0.0",
"@types/hdkey": "^0.7.1",
"@types/jest": "^27.0.2",
"@types/signale": "^1.4.1",
"@types/websocket": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"bitcoinjs-lib": "^5.2.0",
"bn.js": "^5.1.3",
"dotenv": "^8.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^7.0.2",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.0",
"signale": "^1.4.0",
"ts-jest": "^27.0.5",
"ts-node": "^9.0.0",
"tslib": "^1.10.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@harmony-js/core": "^0.1.55",
"@summa-tx/bitcoin-spv-js-clients": "^0.1.4",
"axios": "^0.21.4",
"es6-promise": "^4.2.8",
"onebtc.sdk": "^1.1.9",
"web3": "^1.3.0"
}
}