-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.61 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.61 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@balmy/oracles",
"version": "2.6.0",
"description": "Balmy Oracles",
"keywords": [
"ethereum",
"smart",
"contracts",
"test",
"solidity",
"hardhat",
"oracle"
],
"repository": {
"type": "git",
"url": "git+https://github.com/balmy-protocol/oracles.git"
},
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "0xged",
"url": "https://github.com/0xged"
},
{
"name": "nchamo",
"url": "https://github.com/nchamo"
},
{
"name": "0xsambugs",
"url": "https://github.com/0xsambugs"
}
],
"main": "dist",
"types": "dist",
"files": [
"dist",
"solidity",
"!solidity/contracts/test/**",
"artifacts/solidity/**/*.json",
"!artifacts/solidity/contracts/test/**",
"!artifacts/solidity/**/**/*.dbg.json",
"!/**/*test*",
"!/**/*Mock*",
"deploy",
"!.env",
"!**/.DS_Store"
],
"scripts": {
"compile": "hardhat compile",
"compile:test": "cross-env TEST=true hardhat compile",
"coverage": "TS_NODE_SKIP_IGNORE=true TEST=true COVERAGE=true npx hardhat coverage --solcoverjs ./solcover.js",
"deploy": "npx hardhat deploy",
"fork:node": "cross-env FORK=true hardhat node",
"fork:script": "cross-env FORK=true hardhat run",
"postinstall": "husky install && yarn compile:test",
"lint:check": "cross-env solhint 'contracts/**/*.sol' 'interfaces/**/*.sol' && cross-env prettier --check './**'",
"lint:fix": "sort-package-json && cross-env prettier --write './**' && cross-env solhint --fix 'contracts/**/*.sol' 'interfaces/**/*.sol'",
"prepare": "husky install",
"prepublishOnly": "hardhat clean && PUBLISHING_NPM=true hardhat compile && yarn transpile && pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version",
"test": "yarn compile:test && cross-env TEST=true mocha",
"test:all": "yarn test './test/integration/**/*.spec.ts' && cross-env TEST=true mocha 'test/unit/**/*.spec.ts'",
"test:e2e": "yarn test './test/e2e/**/*.spec.ts'",
"test:gas": "cross-env REPORT_GAS=1 npx hardhat test",
"test:integration": "cross-env USE_RANDOM_SALT=true yarn test './test/integration/**/*.spec.ts'",
"test:unit": "yarn test 'test/unit/**/*.spec.ts'",
"transpile": "rm -rf dist && npx tsc -p tsconfig.publish.json"
},
"lint-staged": {
"*.{js,css,md,ts,sol,json}": "prettier --write",
"*.sol": "cross-env solhint --fix 'contracts/**/*.sol' 'interfaces/**/*.sol'",
"package.json": "sort-package-json"
},
"resolutions": {
"cli-table3@^0.5.0/colors": "1.4.0",
"cli-table@^0.3.1/colors": "1.0.3",
"eth-gas-reporter/colors": "1.4.0"
},
"dependencies": {
"@0xged/hardhat-deploy": "0.11.5",
"@api3/contracts": "0.9.1",
"@chainlink/contracts": "0.4.2",
"@mean-finance/chainlink-registry": "2.2.0",
"@mean-finance/deterministic-factory": "1.10.0",
"@mean-finance/transformers": "1.3.0",
"@mean-finance/uniswap-v3-oracle": "1.0.2",
"@openzeppelin/contracts": "4.7.3",
"@uniswap/v3-core": "1.0.1",
"moment": "2.29.3"
},
"devDependencies": {
"@codechecks/client": "0.1.12",
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@defi-wonderland/smock": "2.4.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/test-helpers": "0.5.15",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.2",
"@types/axios": "0.14.0",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/lodash": "4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "17.0.31",
"axios": "0.27.2",
"bignumber.js": "9.0.2",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"dotenv": "16.0.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.6.5",
"hardhat": "2.23.0",
"hardhat-gas-reporter": "1.0.8",
"hardhat-preprocessor": "0.1.4",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"lodash": "4.17.21",
"mocha": "10.0.0",
"pinst": "3.0.0",
"prettier": "2.6.2",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solc-0.8": "npm:solc@0.8.13",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "https://github.com/adjisb/solidity-coverage",
"solidity-docgen": "0.5.16",
"sort-package-json": "1.57.0",
"standard-version": "9.3.2",
"ts-node": "10.7.0",
"tsconfig-paths": "4.0.0",
"typechain": "8.1.0",
"typescript": "4.6.4"
},
"publishConfig": {
"access": "public"
}
}