-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "extendable",
"version": "1.2.3",
"description": "Extendable smart contract pattern",
"files": [
"/contracts/**/*.sol",
"/artifacts/contracts/**/*.json",
"!/artifacts/contracts/mock/**/*",
"!/contracts/mock/**/*"
],
"scripts": {
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.js\"",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"prettier": "prettier --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts}\"",
"gas-report": "env ENABLE_GAS_REPORT=true yarn test",
"test": "hardhat test",
"compile": "hardhat compile",
"clean": "hardhat clean && rimraf build contracts/build",
"prepare": "yarn clean && env COMPILE_MODE=production yarn compile",
"prepack": "scripts/prepack.sh",
"remixd": "remixd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/violetprotocol/extendable.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"smart-contracts",
"extendable",
"proxy",
"upgradeable"
],
"author": "papasmurf",
"license": "MIT",
"bugs": {
"url": "https://github.com/violetprotocol/extendable/issues"
},
"homepage": "https://github.com/violetprotocol/extendable#readme",
"devDependencies": {
"@ethersproject/keccak256": "^5.6.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@types/bn.js": "^5.1.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"hardhat": "^2.6.0",
"hardhat-gas-reporter": "^1.0.6",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"rlp": "^3.0.0",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"web3": "^1.7.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.0"
}
}