forked from jlopp/bitcoin-core-rpc-auth-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "bitcoin-rpcauth-js",
"version": "1.0.0",
"description": "Create login credentials for a JSON-RPC user",
"author": {
"name": "Aleksandr Ivannikov",
"email": "[email protected]",
"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"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.10.4",
"babelify": "^10.0.0"
},
"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": "[email protected]"
},
"keywords": [
"bitcoin",
"bitcoin-rpc",
"rpc",
"auth",
"rpcauth",
"generator"
],
"contributors": [
{
"name": "Aleksandr Ivannikov",
"email": "[email protected]",
"url": "https://an-ivannikov.com"
}
]
}