-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "@galtproject/erc20-auction",
"version": "1.1.0",
"description": "Bootstrap for Truffle/Solidity projects",
"directories": {
"test": "test"
},
"devDependencies": {
"@galtproject/eslint-config-galt": "github:galtproject/eslint-config-galt#712a884caf302c7a73f777db31ff9d25f7ec79a9",
"@galtproject/solidity-test-chest": "https://github.com/galtproject/solidity-test-chest#46d6bc2a189ab0336ab4e08fceae1b06ffa17004",
"@openzeppelin/contract-loader": "^0.6.1",
"@openzeppelin/contracts": "2.5.1",
"@openzeppelin/test-environment": "^0.1.4",
"@truffle/debug-utils": "^4.1.6",
"chai": "^4.2.0",
"cli-table": "^0.3.1",
"ganache-cli": "^6.9.1",
"ganache-core": "^2.10.2",
"lodash": "^4.17.15",
"mocha": "^8.0.1",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "0.0.4",
"solidity-coverage": "^0.7.5",
"truffle": "5.1.29",
"web3": "1.2.9"
},
"engines": {
"node": "^10.15.3"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts"
],
"repository": "https://github.com/galtproject/erc20-auction-contracts",
"scripts": {
"test": "mocha --exit --recursive test --timeout 10000",
"ttest": "truffle test --network test",
"compile": "truffle compile",
"deploy": "truffle migrate --network local",
"coverage": "SOLIDITY_COVERAGE=yes scripts/coverage.sh",
"format:js": "eslint . --fix",
"format:sol": "prettier --write \"contracts/**/*.sol\"",
"lint:js": "eslint .",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\""
},
"author": "",
"license": "MIT",
"dependencies": {
}
}