forked from balancer/metastable-rate-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.39 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
{
"name": "@balancer-labs/metastable-rate-providers",
"version": "1.0.0",
"description": "Price rate providers for Balancer V2 Metastable Pools",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/metastable-rate-providers#readme",
"repository": {
"type": "git",
"url": "https://github.com/balancer-labs/metastable-rate-providers.git"
},
"bugs": {
"url": "https://github.com/balancer-labs/metastable-rate-providers/issues"
},
"files": [
"contracts/**/*",
"!contracts/test/*"
],
"engines": {
"node": ">=12.10"
},
"contributors": [
"Daniel Fernandez <daniel@balancer.finance>",
"Facu Spagnuolo <facu@balancer.finance>",
"Fernando Martinelli <fernando@balancer.finance>",
"Greg Taschuk <greg@balancer.finance>",
"Jeffrey Bennett <jeff@balancer.finance>",
"John Grant <john@balancer.finance>",
"Mike McDonald <mike@balancer.finance>",
"Nicolás Venturo <nico@balancer.finance>",
"Tom French <tom@balancer.finance"
],
"scripts": {
"build": "yarn compile",
"compile": "hardhat compile && rm -rf artifacts/build-info",
"compile:watch": "nodemon --ext sol --exec yarn compile",
"lint": "yarn lint:solidity && yarn lint:typescript",
"lint:solidity": "solhint 'contracts/**/*.sol'",
"lint:typescript": "eslint . --ext .ts --max-warnings 0",
"test": "yarn compile && mocha --extension ts --require hardhat/register --recursive",
"test:watch": "nodemon --ext js,ts --watch test --watch lib --exec 'clear && yarn test --no-compile'"
},
"devDependencies": {
"@balancer-labs/v2-pool-utils": "^1.0.0",
"@chainlink/contracts": "^0.2.1",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.3.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.0.2",
"ethers": "^5.4.1",
"hardhat": "^2.6.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.4",
"ts-node": "^8.10.2",
"typescript": "^4.0.2"
}
}