-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
{
"name": "staking-contract",
"version": "0.0.1",
"description": "Smart contract for staking native tokens",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx truffle test",
"coverage": "npx truffle run coverage",
"lint": "npx solhint contracts/**/*.sol",
"build": "truffle compile --all",
"docgen": "solidity-docgen -i contracts/ -o docs/generated/ -s single -t docs/templates/ -x html",
"flatten": "truffle-flattener ./contracts/main/JoysStaking.sol | awk '/SPDX-License-Identifier/&&c++>0 {next} 1' | awk '/pragma experimental ABIEncoderV2;/&&c++>0 {next} 1' > ./Full.sol"
},
"author": "Alexey Zhdanov",
"license": "",
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@truffle/hdwallet-provider": "^1.4.1"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.5",
"solidity-docgen": "^0.5.11",
"solhint": "^3.2.0",
"eth-gas-reporter": "^0.2.17",
"ganache-cli": "^6.10.2",
"solidity-coverage": "^0.7.10"
}
}