-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 962 Bytes
/
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
{
"name": "electrum-api",
"version": "1.1.0",
"main": "dist/index.js",
"description": "Complete library for communicating with Electrum servers with support for most methods",
"types": "dist/index.d.ts",
"repository": "git@github.com:kaplanmaxe/electrum-api.git",
"author": "Max Kaplan <kaplanmaxe3@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.0",
"ts-node": "^5.0.1",
"tslint-kaplankomputing": "^1.0.0",
"typescript": "^3.1.1"
},
"dependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.5",
"bitcoinjs-lib": "^5.1.7",
"json-rpc-tls": "^1.2.2"
},
"scripts": {
"install": "npm run compile",
"compile": "tsc",
"compile:watch": "tsc -w",
"prepublish": "yarn compile",
"test": "mocha",
"lint": "tslint 'src/**/*.ts?(x)'"
},
"keywords": [
"bitcoin",
"electrum",
"client",
"api"
]
}