forked from OokiTrade/contractsV2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "@bzxnetwork/contractsV2",
"version": "1.0.0",
"description": "Version 2 of the smart contracts for the bZx protocol and external integrations",
"keywords": [],
"author": "bZeroX LLC 2020",
"license": "Apache-2.0",
"homepage": "https://github.com/bZxNetwork/contractsV2#readme",
"repository": {
"type": "git",
"url": "https://github.com/bZxNetwork/contractsV2.git"
},
"bugs": {
"url": "https://github.com/bZxNetwork/contractsV2/issues"
},
"devDependencies": {
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"openzeppelin-2.5.0": "npm:@openzeppelin/contracts@^2.5.0",
"openzeppelin-3.4.0": "npm:@openzeppelin/contracts@^3.4.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.49",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "^0.0.4"
},
"scripts": {
"analyize-contracts": "slither .",
"lint-contracts": "solhint contracts/**/*.sol",
"test": "brownie test"
},
"husky": {
"hooks": {
"pre-commit-disabled": "yarn analyize-contracts && yarn lint-contracts && yarn test"
}
}
}