-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "@bancor/token-governance",
"version": "0.1.8",
"description": "Role-based Token Governance",
"repository": {
"type": "git",
"url": "git+https://github.com/bancorprotocol/token-governance"
},
"main": "typechain/index.js",
"types": "typechain/index.d.ts",
"files": [
"/contracts/**/*.sol",
"/artifacts",
"/typechain"
],
"author": "Leonid Beder",
"license": "MIT",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"prepublish": "yarn clean && yarn build && tsc",
"lint": "yarn lint:js && yarn lint:sol",
"lint:js": "eslint . --ext .ts",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"format": "prettier --check --write contracts/**/* test/**/* --config .prettierrc",
"clean": "rm -rf artifacts cache data coverage dist typechain"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "3.2.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^16.4.13",
"chai": "^4.3.0",
"chai-bn": "^0.2.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"hardhat": "2.5.0",
"prettier": "^2.3.2",
"prettier-package-json": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.15",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
},
"dependencies": {}
}