-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "@yield-protocol/vault-v1",
"version": "1.0.3",
"description": "Solidity contracts to implement the Yield Protocol collateralized debt engine",
"author": "Yield Inc.",
"files": [
"contracts",
"contracts/interfaces",
"!contracts/external",
"contracts/external/chai/interfaces",
"contracts/external/weth/interfaces",
"!contracts/mocks"
],
"homepage": "https://yield.is",
"repository": {
"url": "https://github.com/yieldprotocol/fyDai",
"type": "git"
},
"bugs": {
"url": "https://github.com/yieldprotocol/fyDai/issues"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "buidler compile",
"test": "buidler test test/*.ts",
"test:non-functional": "buidler test test/non-functional/*.ts",
"coverage": "buidler coverage --network coverage --temp build --testfiles 'test/*.ts'",
"ganache": "./scripts/ganache.sh",
"deploy:ganache": "yarn ganache && truffle migrate",
"mainnet-ganache": "./scripts/mainnet-ganache.sh",
"lint": "prettier ./test/**/*.ts --check",
"lint:ts": "prettier ./test/**/*.ts --write",
"lint:sol": "solhint -f table contracts/**/*.sol"
},
"devDependencies": {
"@yield-protocol/utils": "^1.0.5",
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/mocha": "^8.0.0",
"buidler-gas-reporter": "0.1.4-beta.4",
"chai": "4.2.0",
"dss-interfaces": "^0.1.1",
"ethereumjs-util": "^7.0.3",
"ethers": "^5.0.7",
"ganache-time-traveler": "^1.0.14",
"mocha": "^7.1.0",
"prettier": "^2.0.5",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.9",
"truffle": "^5.1.39",
"truffle-flattener": "^1.5.0",
"truffle-typings": "^1.0.8",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"license": "GPL-3.0-or-later"
}