forked from aguycalled/electrum-client-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "@triple-a/electrum-client-ts",
"version": "0.2.12",
"description": "Electrum protocol client for node.js and browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build && npm install husky -D && husky install",
"build": "tsc",
"pretest": "npm run build",
"test": "mocha --timeout 10000",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"files": [
"dist",
"src"
],
"dependencies": {
"websocket": "^1.0.29"
},
"devDependencies": {
"@types/node": "^20.4.7",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"bitcoinjs-lib": "*",
"chai": "^4.2.0",
"electrum-host-parse": "^0.1.1",
"eslint": "^8.53.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-import": "^2.29.0",
"fs": "0.0.1-security",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"homepage": "https://github.com/aguycalled/electrum-client-js#readme",
"repository": {
"type": "git",
"url": "git://github.com/aguycalled/electrum-client-js.git"
},
"bugs": {
"url": "https://github.com/aguycalled/electrum-client-js/issues"
},
"keywords": [
"client",
"electrum",
"bitcoin"
],
"engines": {
"node": ">=6"
},
"author": "Yuki Akiyama",
"license": "MIT",
"peerDependencies": {
"bitcoinjs-lib": "^6.1.5"
}
}