forked from keep-network/electrum-client-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.08 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
{
"name": "electrum-client-js",
"version": "3.0.1",
"description": "Electrum protocol client for Node.js",
"main": "index.js",
"files": [
"lib/**",
"index.js"
],
"scripts": {
"test": "mocha test/*.test.js"
},
"dependencies": {
"eventemitter3": "^5.0.0"
},
"devDependencies": {
"typescript": "^5.0.2",
"bsv": "^1.5.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"lodash": "^4.17.20",
"mocha": "^7.2.0",
"tracer": "^1.1.5",
"ts-node": "^10.0.0"
},
"peerDependencies": {},
"keywords": [
"client",
"electrum",
"bitcoin"
],
"engines": {
"node": ">=6"
},
"contributors": [
{
"name": "Yuki Akiyama"
},
{
"name": "7kharov"
},
{
"name": "overtorment"
},
{
"name": "keep-network"
},
{
"name": "baryon"
}
],
"license": "MIT"
}