-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "upgradeable-contracts-solidity",
"version": "1.0.1",
"description": "Upgradeable Smart Contracts for Solidity",
"files": [
"/contracts/*.sol",
"/build/*.json"
],
"repository": {
"type": "git",
"url": "https://github.com/BaldyAsh/upgradeable-contracts-solidity.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"upgradeable",
"proxy"
],
"author": "Anton Grigorev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BaldyAsh/upgradeable-contracts-solidity/issues"
},
"homepage": "https://github.com/BaldyAsh/upgradeable-contracts-solidity",
"scripts": {
"build": "waffle waffle-config.json",
"test": "yarn build && mocha",
"lint:solidity": "solhint contracts/*.sol",
"prettier:solidity": "prettier --write contracts/*.sol"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"ethereum-waffle": "^2.0.14",
"ethereumjs-abi": "^0.6.8",
"ethers": "^4.0.33",
"ethjs": "^0.4.0",
"mocha": "^6.2.0",
"path": "^0.12.7",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"solhint": "^2.1.2",
"solhint-plugin-prettier": "^0.0.3",
"uuid": "^3.3.2"
}
}