-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "lenderscontract",
"version": "0.1.0",
"description": "Smart Contracts for lenders protocol",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"pipeline": "bash ./scripts/run_tests.sh",
"test": "truffle test",
"coverage": "npx truffle run coverage",
"test:debug": "truffle test --debug",
"debug:tx": "truffle debug",
"prettier": "prettier --write 'contracts/**/*.sol'",
"lint": "npm prettier --check && solhint 'contracts/**/*.sol",
"log": "changelog generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Insureably/Protocol.git"
},
"keywords": [
"undercollataral",
"loans",
"defi",
"solidity"
],
"author": "Rachit Anand Srivastava",
"license": "ISC",
"bugs": {
"url": "https://github.com/Insureably/Protocol/issues"
},
"homepage": "https://github.com/Insureably/Protocol#readme",
"dependencies": {
"@chainlink/contracts": "^0.1.9",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@truffle/hdwallet-provider": "^1.4.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"solidity-coverage": "^0.7.16",
"truffle": "^5.2.6"
},
"devDependencies": {
"@codechecks/client": "^0.1.10",
"@openzeppelin/truffle-upgrades": "^1.7.0",
"dotenv": "^10.0.0",
"eth-gas-reporter": "^0.2.22",
"generate-changelog": "^1.8.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.10"
}
}