-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "merkle-distributor",
"version": "1.0.0",
"description": "",
"directories": {
"lib": "lib"
},
"scripts": {
"generate-merkle-root": "ts-node scripts/generate-merkle-root.ts",
"generate-merkle-root:example": "ts-node scripts/generate-merkle-root.ts --input scripts/example_input.csv --network kovan --description 'Arbitrary test distribution'",
"verify-merkle-roots": "ts-node scripts/verify-merkle-roots.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reflexer-labs/merkle-distributor.git"
},
"author": "",
"license": "GPL",
"bugs": {
"url": "https://github.com/reflexer-labs/merkle-distributor/issues"
},
"homepage": "https://github.com/reflexer-labs/merkle-distributor#readme",
"dependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.4",
"commander": "^7.1.0",
"ethereumjs-util": "^7.0.9",
"ethers": "^5.6.9",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/node": "^14.14.34",
"gh-pages": "^3.1.0"
}
}