-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.24 KB
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": "decentralized-key-management",
"version": "0.4.4",
"description": "A framework for HotPocket clusters to manage their XRPL account signer keys in order to use the XRP Ledger in a decentralized manner. The `DKM` framework facilitates the management of a dApp's XRPL multi-sig account.",
"main": "index.js",
"scripts": {
"test": "sudo hpdevkit clean && cd test/general/contract/src && node ../generate-account.js -net hooks -node wss://hooks-testnet-v3.xrpl-labs.com -id 21338 && sudo npm link decentralized-key-management && sudo HP_CLUSTER_SIZE=4 npm start",
"patch": "sudo version patch",
"minor": "sudo version minor",
"major": "sudo version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wojake/DKM.git"
},
"keywords": [
"Decentralized Key Management",
"XRPL",
"HotPocket",
"Evernode"
],
"author": "Wo Jake",
"license": "ISC",
"bugs": {
"url": "https://github.com/wojake/DKM/issues"
},
"homepage": "https://github.com/wojake/DKM",
"dependencies": {
"@transia/xrpl": "^2.7.3-alpha.9",
"underscore": "^1.13.6"
},
"devDependencies": {
"commander": "^11.0.0",
"eslint": "^8.46.0",
"hpdevkit": "^0.6.1",
"prompt-sync": "^4.2.0"
}
}