-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "crypto-payroll-contracts",
"version": "1.0.0",
"description": "Simple contract for keeping track of payroll payments and doing batch withdraws. ",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "hardhat test --network hardhat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opolis/crypto-payroll-contracts.git"
},
"author": "Opolis, Inc.",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/opolis/crypto-payroll-contracts/issues"
},
"homepage": "https://github.com/opolis/crypto-payroll-contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.5",
"hardhat-gas-reporter": "^1.0.4"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@openzeppelin/contracts": "^4.4.2",
"hardhat-abi-exporter": "^2.8.0"
}
}