-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "@zano/zano-rpc",
"version": "1.0.0",
"description": "Zano RPC Daemon and RPC Wallet Javascript Library",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"dependencies": {
"axios": "^0.26.1",
"p-queue": "^6.2.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"jsdoc": "^3.6.10",
"jsdoc-chameleon-template": "^1.0.2",
"mocha": "^9.2.2",
"uuid": "8.3.2"
},
"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-contracts": "mocha -t 7200000 ./test/wallet/walletContracts.js",
"test-wallet-market-place": "mocha -t 600000 ./test/wallet/walletMarketPlace.js",
"test-wallet-atomics": "mocha -t 600000 ./test/wallet/walletAtomics.js",
"test-wallet-cold-signing": "mocha -t 60000 ./test/wallet/walletColdSigning.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/zano/zano-rpc-js.git"
},
"keywords": [
"zano",
"RPC",
"Daemon",
"Wallet",
"client"
],
"bugs": {
"url": "https://github.com/zano/zano-rpc-js/issues"
},
"homepage": "https://github.com/zano/zano-rpc-js#readme"
}