-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 KB
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
56
57
58
{
"name": "@bitriel/vesting-wallet",
"version": "0.1.0",
"license": "MIT",
"description": "Smart contract which'll handle locking/linear vesting Genesis pre-mint tokens for team and foundation",
"keywords": [
"selendra",
"vesting-wallets",
"smart-contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bitriel/vesting-wallet.git"
},
"bugs": {
"url": "https://github.com/bitriel/vesting-wallet/issues"
},
"files": [
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json",
"!artifacts/contracts/test/**/*",
"contracts",
"!contracts/test",
"types"
],
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"clean": "hardhat clean",
"coverage": "RUN_COVERAGE=1 hardhat coverage",
"docs": "hardhat docgen"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.0",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.7.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.9.14",
"hardhat-docgen": "^1.2.0",
"hardhat-gas-reporter": "^1.0.6",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.4.0",
"typechain": "^5.2.0",
"typescript": "^4.5.2"
}
}