-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1004 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
33
34
35
36
{
"name": "@complus/merkle-distributor",
"version": "1.0.0",
"license": "MIT",
"description": "A smart contract that distributes a balance of tokens according to a merkle root",
"files": [
"build"
],
"author": "_sudosu_ | https://twitter.com/_sudosu_",
"homepage": "https://complus.network",
"repository": {
"type": "git",
"url": "https://github.com/complusnetwork/merkle-distributor"
},
"keywords": [
"complusnetwork",
"airdrop"
],
"engines": {
"node": ">=10"
},
"scripts": {
"compile": "truffle compile",
"generate-merkle-root": "ts-node scripts/generate-merkle-root.ts --input scripts/airdrop-list.json",
"verify-merkle-root": "ts-node scripts/verify-merkle-root.ts --input scripts/result.json"
},
"devDependencies": {
"commander": "^6.1.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3",
"ethers": "^5.0.7",
"ethereumjs-util": "^7.0.4",
"@truffle/hdwallet-provider": "^1.2.0",
"truffle": "^5.1.58"
}
}