-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
{
"name": "@gysr/core",
"version": "3.0.0",
"description": "GYSR core protocol contracts, interfaces, libraries, and ABIs",
"files": [
"contracts/*.sol",
"contracts/info/*.sol",
"contracts/interfaces/*.sol",
"abis/*.json",
"abis/info/*.json",
"abis/interfaces/*.json",
"!contracts/test"
],
"dependencies": {
"@openzeppelin/contracts": "^4.8.3"
},
"devDependencies": {
"@anders-t/ethers-ledger": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"app-root-path": "^3.0.0",
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.0",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.8",
"micromatch": "^4.0.5",
"mocha": "^8.1.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.1.2",
"solidity-coverage": "^0.8.2"
},
"scripts": {
"test": "hardhat compile && hardhat test",
"coverage": "hardhat clean && hardhat coverage",
"stage": "hardhat compile && node scripts/abis.js && npm publish ./stage --dry-run",
"package": "hardhat compile && node scripts/abis.js && npm publish ./stage --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/gysr-io/core.git"
},
"keywords": [
"gysr",
"core",
"solidity",
"ethereum",
"smart-contracts",
"defi"
],
"author": "gysr.io <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gysr-io/core/issues"
},
"homepage": "gysr.io"
}