-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "bitcoin-rpcauth-js",
"version": "1.0.0",
"description": "Create login credentials for a JSON-RPC user",
"author": {
"name": "Aleksandr Ivannikov",
"email": "dev@an-ivannikov.com",
"url": "https://an-ivannikov.com"
},
"license": "MIT",
"main": "index.js",
"bin": {
"bitcoin-rpcauth": "./bin/bitcoin-rpcauth"
},
"scripts": {
"start": "node ./bin/bitcoin-rpcauth"
},
"dependencies": {
"base64url": "^3.0.1",
"yargs": "^15.3.1"
},
"homepage": "https://github.com/an-ivannikov-dev/bitcoin-rpcauth-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/an-ivannikov-dev/bitcoin-rpcauth-js.git"
},
"bugs": {
"url": "https://github.com/an-ivannikov-dev/bitcoin-rpcauth-js/issues",
"email": "dev@an-ivannikov.com"
},
"keywords": [
"bitcoin",
"bitcoin-rpc",
"rpc",
"auth",
"rpcauth",
"generator"
],
"contributors": [
{
"name": "Aleksandr Ivannikov",
"email": "dev@an-ivannikov.com",
"url": "https://an-ivannikov.com"
}
]
}