forked from tahowallet/merkle-distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "@uniswap/merkle-distributor",
"author": {
"name": "Moody Salem"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "📦 A smart contract that distributes a balance of tokens according to a merkle root",
"version": "1.0.1",
"homepage": "https://uniswap.org",
"keywords": [
"uniswap",
"erc20"
],
"repository": {
"type": "git",
"url": "https://github.com/Uniswap/merkle-distributor"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@openzeppelin/contracts": "3.1.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"@types/sinon-chai": "^3.2.5",
"axios": "^0.20.0",
"chai": "^4.2.0",
"commander": "^6.1.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-util": "^7.0.4",
"mocha": "^6.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"solc": "0.6.11",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "waffle",
"prebuild": "rimraf ./build/ ./dist/",
"build": "waffle && tsc",
"pretest": "yarn compile",
"test": "mocha",
"generate-merkle-root": "ts-node scripts/generate-merkle-root.ts",
"generate-merkle-root:example": "ts-node scripts/generate-merkle-root.ts --input scripts/example.json",
"prepublishOnly": "yarn test",
"install": "yarn install --production=false --ignore-scripts && yarn build"
},
"packageManager": "[email protected]",
"dependencies": {
"ethers": "5.4.0"
}
}