-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 2.63 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
60
61
62
63
{
"name": "@arqma/arqma-rpc",
"version": "0.2.3",
"description": "ArQmA RPC Daemon and RPC Wallet Javascript Library",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"dependencies": {
"axios": "^0.21.1",
"p-queue": "^6.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"jsdoc": "^3.6.3",
"jsdoc-chameleon-template": "^1.0.2",
"mocha": "^6.2.1"
},
"scripts": {
"test": "node ./test/info.js",
"test-http-digest": "mocha -t 60000 ./test/digest/httpDigest.js",
"test-daemon-functions": "mocha -t 60000 ./test/daemon/daemonFunctions.js",
"test-wallet-account": "mocha -t 60000 ./test/wallet/walletAccount.js",
"test-wallet-creation": "mocha -t 60000 ./test/wallet/walletCreation.js",
"test-wallet-hot-cold": "mocha -t 60000 ./test/wallet/walletHotCold.js",
"test-wallet-mining": "mocha -t 60000 ./test/wallet/walletMining.js",
"test-wallet-multisig-creation": "mocha -t 60000 ./test/wallet/walletMultisigCreation.js",
"test-wallet-multisig-transfer": "mocha -t 60000 ./test/wallet/walletMultisigTransfer.js",
"test-wallet-proofs": "mocha -t 60000 ./test/wallet/walletProofs.js",
"test-wallet-relay": "mocha -t 60000 ./test/wallet/walletRelay.js",
"test-wallet-restore": "mocha -t 60000 ./test/wallet/walletRestore.js",
"test-wallet-sweep-all": "mocha -t 300000 ./test/wallet/walletSweepAll.js",
"test-wallet-sweep-dust": "mocha -t 60000 ./test/wallet/walletSweepDust.js",
"test-wallet-sweep-single": "mocha -t 60000 ./test/wallet/walletSweepSingle.js",
"test-wallet-transaction-key": "mocha -t 60000 ./test/wallet/walletTransactionKey.js",
"test-wallet-transfer": "mocha -t 60000 ./test/wallet/walletTransfer.js",
"test-wallet-transfer-split": "mocha -t 60000 ./test/wallet/walletTransferSplit.js",
"test-wallet-validate-address": "mocha -t 60000 ./test/wallet/walletValidateAddress.js",
"test-helper-checkmandatory-parameters": "mocha -t 6000 ./test/helper/checkMandatoryParameters.js",
"test-helper-checkoptional-parameters": "mocha -t 6000 ./test/helper/checkOptionalParameterType.js",
"generate-docs": "jsdoc ./lib/rpcWallet.js ./lib/rpcDaemon.js --readme ./README.md -c ./jsdoc.json -d docs --verbose"
},
"author": "SmajeNz0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arqma/arqma-rpc-js.git"
},
"keywords": [
"ArQmA",
"RPC",
"Daemon",
"Wallet",
"client"
],
"bugs": {
"url": "https://github.com/arqma/arqma-rpc-js/issues"
},
"homepage": "https://github.com/arqma/arqma-rpc-js#readme"
}