-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
75 lines (75 loc) · 3.04 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@boringcrypto/boring-solidity",
"version": "2.0.3",
"private": false,
"description": "BoringSolidity",
"directories": {
"test": "test"
},
"files": [
"contracts"
],
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --solc-input --license UNLICENSED",
"mainnet:export": "hardhat --network mainnet export",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --solc-input --license UNLICENSED",
"ropsten:export": "hardhat --network ropsten export",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:export": "hardhat --network kovan export",
"kovan:verify": "hardhat --network kovan etherscan-verify --solc-input --license UNLICENSED",
"coverage": ".\\node_modules\\.bin\\hardhat.cmd coverage",
"test": "hardhat test --deploy-fixture",
"test:coverage": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage",
"test:gas": "REPORT_GAS=true yarn test",
"certora-erc20": "certoraRun contracts\\ERC20.sol:ERC20WithSupply --verify ERC20WithSupply:test\\certora\\ERC20.spec --jar C:\\\\certora\\\\cvt.jar",
"certora": "certoraRun contracts\\mocks\\MockSingleNFT.sol:MockSingleNFT --verify MockSingleNFT:test\\certora\\SingleNFT.spec --jar C:\\\\certora\\\\emv2.jar --optimistic_loop --rule_sanity",
"prettier": "prettier --write test/**/*.js contracts/**/*.sol",
"lint": "yarn prettier && solhint -c .solhint.json 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boringcrypto/BoringSolidity.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/boringcrypto/BoringSolidity/issues"
},
"homepage": "https://github.com/boringcrypto/BoringSolidity#readme",
"devDependencies": {
"@codechecks/client": "^0.1.10",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tenderly/hardhat-tenderly": "^1.0.6",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.1.4",
"hardhat": "^2.0.5",
"hardhat-abi-exporter": "^2.0.6",
"hardhat-dependency-compiler": "^1.0.0",
"hardhat-deploy": "^0.7.0-beta.38",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-preprocessor": "^0.1.1",
"hardhat-spdx-license-identifier": "^2.0.2",
"hardhat-watcher": "^2.0.0",
"husky": "^4.3.6",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"solc": "0.8.9",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.12"
}
}