mirror of
https://github.com/Uniswap/merkle-distributor.git
synced 2026-01-09 13:08:07 -05:00
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "@uniswap/merkle-distributor",
|
|
"version": "1.0.1",
|
|
"description": "📦 A smart contract that distributes a balance of tokens according to a merkle root",
|
|
"keywords": [
|
|
"uniswap",
|
|
"erc20"
|
|
],
|
|
"homepage": "https://uniswap.org",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Uniswap/merkle-distributor"
|
|
},
|
|
"author": {
|
|
"name": "Moody Salem"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"precompile": "rimraf ./build/",
|
|
"compile": "npx hardhat compile",
|
|
"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",
|
|
"pretest": "yarn compile",
|
|
"test": "npx hardhat test"
|
|
},
|
|
"dependencies": {
|
|
"@openzeppelin/contracts": "4.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nomiclabs/hardhat-ethers": "^2.0.6",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.3",
|
|
"@types/chai": "^4.2.6",
|
|
"@types/mocha": "^5.2.7",
|
|
"axios": "^0.20.0",
|
|
"chai": "^4.2.0",
|
|
"commander": "^6.1.0",
|
|
"dotenv": "^16.0.1",
|
|
"ethereum-waffle": "^3.0.0",
|
|
"ethereumjs-util": "^7.0.4",
|
|
"ethers": "5.6.9",
|
|
"hardhat": "^2.9.9",
|
|
"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"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
}
|
|
}
|