-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.54 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
{
"name": "orchestration",
"version": "0.0.1",
"description": "Solidity smart contract orchestration pattern.",
"author": {
"name": "Alberto Cuesta Cañada",
"github": "albertocuestacanada",
"license": "GPL-3.0-or-later"
},
"scripts": {
"build": "buidler compile",
"test": "buidler test test/*.ts",
"test:non-functional": "buidler test",
"test:echidna": "npx buidler compile && echidna-test . --contract DecimalMathEchidna --config ./contracts/mocks/DecimalMathEchidna.yaml",
"ganache": "./scripts/ganache.sh",
"deploy:ganache": "yarn ganache && truffle migrate",
"coverage": "buidler coverage --network coverage --temp build --testfiles 'test/*.ts'",
"lint:fix": "prettier ./test/**/*.ts --write"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/contracts": "3.1.0-solc-0.7",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/mocha": "^8.0.0",
"buidler-gas-reporter": "0.1.4-beta.4",
"chai": "4.2.0",
"ethereumjs-util": "^7.0.3",
"ethers": "^5.0.7",
"ganache-time-traveler": "^1.0.14",
"mocha": "^7.1.0",
"prettier": "^2.0.5",
"solidity-coverage": "^0.7.9",
"truffle": "^5.1.39",
"truffle-typings": "^1.0.8",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}