-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@keep-network/coverage-pools",
"version": "2.1.0-dev",
"license": "MIT",
"files": [
"artifacts/",
"build/contracts/",
"contracts/",
"!**/test/",
"deploy/",
"export.json"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/keep-network/coverage-pools"
},
"bugs": {
"url": "https://github.com/keep-network/coverage-pools/issues"
},
"homepage": "https://github.com/keep-network/coverage-pools",
"scripts": {
"build": "hardhat compile",
"deploy": "hardhat deploy --export export.json",
"format": "npm run lint && prettier --check .",
"format:fix": "npm run lint:fix && prettier --write .",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:fix:js": "eslint . --fix",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix",
"lint:js": "eslint .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"test": "hardhat test",
"test:system": "NODE_ENV=system-test hardhat test ./test/system/*.test.js",
"test:unit:coverage": "hardhat coverage",
"prepublishOnly": "./scripts/prepare-artifacts.sh --network $npm_config_network"
},
"dependencies": {
"@keep-network/keep-core": "development",
"@keep-network/tbtc": "development",
"@openzeppelin/contracts": "^4.8",
"@thesis/solidity-contracts": "github:thesis/solidity-contracts#4985bcf",
"@threshold-network/solidity-contracts": "development"
},
"devDependencies": {
"@keep-network/hardhat-helpers": "^0.6.0-pre.17",
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep#d6ec02e",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"@tenderly/hardhat-tenderly": ">=1.0.13 <1.2.0",
"@types/chai": "^4.2.20",
"@types/mocha": "^8.2.3",
"@types/node": "^16.0.1",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0c27ade",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.0.32",
"hardhat": "^2.10.0",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.3.2",
"prettier-plugin-sh": "^0.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.14 ",
"solhint": "^3.3.6",
"solhint-config-keep": "github:keep-network/solhint-config-keep#0.1.0",
"solidity-coverage": "^0.7.16",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 14.0.0"
}
}