-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.63 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": "audacity",
"version": "1.0.0",
"description": "## Introduction",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"devDependencies": {
"bignumber.js": "^7.2.1",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"dotenv": "^6.0.0",
"ethlint": "^1.2.3",
"ganache-cli": "^6.7.0",
"ganache-cli-coverage": "github:Agusx1211/ganache-cli#c462b3fc48fe9b16756f7799885c0741114d9ed3",
"husky": "^1.1.0",
"jsdoc": "^3.6.3",
"lodash": "^4.17.10",
"openzeppelin-solidity": "2.3",
"openzeppelin-test-helpers": "0.3.2",
"solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"truffle": "^5.1.5",
"truffle-flattener": "^1.4.2",
"web3": "^1.2.1",
"@vkonst/infura-wallets": "0.0.1"
},
"scripts": {
"test": "scripts/test.sh",
"compile": "truffle compile",
"flatten": "sh -c '([ -d build/ ] || mkdir build) && truffle-flattener contracts/LaborLedgerImpl.sol > build/LaborLedgerImpl.flatten.sol'",
"migrate": "truffle migrate",
"networks": "truffle networks",
"coverage": "scripts/coverage.sh",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/audacity-dao/ethereum.git"
},
"author": "All Contributors (see AUTHORS.md)",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/audacity-dao/ethereum/issues"
},
"homepage": "https://gitlab.com/audacity-dao/ethereum#readme",
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "^2.4.0",
"@openzeppelin/upgrades": "^2.7.2"
}
}