forked from cleancoindev/Whalestreet-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.85 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
{
"name": "whalestreet-contracts",
"version": "1.0.0",
"description": "Smart contracts for Whalestreet",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"dependencies": {
"@openzeppelin/contracts": "3.2.1-solc-0.7"
},
"peerDependencies": {
"@truffle/contract": "4.2.24",
"@codechecks/client": "0.1.10"
},
"devDependencies": {
"@openzeppelin/test-helpers": "0.5.6",
"dotenv": "8.2.0",
"eth-gas-reporter": "0.2.19",
"ganache-time-traveler": "1.0.15",
"husky": "4.3.0",
"linebyline": "1.3.0",
"npm-run-all": "4.1.5",
"solc": "0.7.5",
"solhint": "3.3.2",
"eslint": "7.14.0",
"solidity-coverage": "0.7.10",
"truffle": "5.1.47",
"truffle-flattener": "1.5.0"
},
"scripts": {
"build": "run-s build:*",
"build:contracts": "rm -f build/contracts/*;./node_modules/truffle/build/cli.bundled.js compile",
"test": "run-s lint:js lint:sol build:* test:*",
"test:contracts": "./node_modules/truffle/build/cli.bundled.js test && cat build/eth-gas-report.txt",
"test-coverage": "./node_modules/truffle/build/cli.bundled.js run coverage",
"lint": "run-s lint:*",
"lint:js": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"lint:sol": "./node_modules/solhint/solhint.js -w 0 contracts/*.sol contracts/*/*.sol && echo '✔ Your .sol files look good.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lendroidproject/Whalestreet-contracts.git"
},
"author": "Lendroid Foundation",
"license": "Lendroid : https://github.com/lendroidproject/protocol.2.0/blob/master/LICENSE.md",
"bugs": {
"url": "https://github.com/lendroidproject/Whalestreet-contracts/issues"
},
"homepage": "https://github.com/lendroidproject/Whalestreet-contracts#readme"
}