forked from xarmian/voi_drops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1007 Bytes
/
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
{
"name": "reward_drop",
"version": "1.0.1",
"description": "Reward airdrop script for block proposers",
"main": "index.js",
"scripts": {
"start": "npm run menu",
"airdrop": "node scripts/airdrop.js",
"epoch_calc_api": "node scripts/epoch_calc_api.js",
"epoch_calc": "node scripts/epoch_calc.js",
"block_follower": "node scripts/block_follower.js",
"buckets": "node scripts/buckets.js",
"balances": "node scripts/balances.js",
"test": "node tests/epoch_calc_api_test.js",
"menu": "echo \"Usage: npm run [script]\n\nAvailable scripts:\nairdrop\nepoch_calc_api\nepoch_calc\nblock_follower\nbuckets\nbalances\""
},
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"algosdk": "^2.7.0",
"compare-versions": "^6.1.0",
"config": "^3.3.9",
"csv-writer": "^1.6.0",
"dotenv": "^16.3.1",
"fast-csv": "^4.3.6",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"sqlite3": "^5.1.6",
"ulujs": "^0.11.10"
}
}