-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.91 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
53
{
"name": "witnet-ethereum-block-relay",
"version": "0.1.2",
"description": "Witnet-Ethereum Block Relay",
"main": "",
"scripts": {
"test": "truffle test",
"console": "truffle console",
"compile-contracts": "truffle compile --all",
"compile-flattened": "npx truffle compile --all --config flattened-config.js ",
"coverage": "solidity-coverage",
"flatten": " mkdir contracts/flattened/ 2>/dev/null; npx truffle-flattener contracts/*.sol > contracts/flattened/Flattened.sol",
"fmt": "solhint --max-warnings 0 \"contracts/**/*.sol\" && eslint ./test && solhint \"test/**/*.sol\"",
"fmt!": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix && eslint ./test --fix && solhint \"test/**/*.sol\" --fix",
"postinstall": "npm run compile-contracts",
"migrate-flattened": "npm run flatten && npx truffle migrate --config flattened-config.js",
"verify-flattened": "npx truffle run verify"
},
"author": "Witnet Foundation <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-ethereum-block-relay.git"
},
"keywords": [
"bridge",
"witnet",
"ethereum"
],
"license": "GPL-3.0",
"dependencies": {
"@openzeppelin/contracts": "3.2.0"
},
"devDependencies": {
"dotenv": "8.2.0",
"eslint": "7.19.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eth-gas-reporter": "0.2.20",
"solhint": "3.3.2",
"ganache-cli": "6.12.2",
"js-sha256": "0.9.0",
"solidity-coverage": "0.7.14",
"truffle": "5.1.65",
"@openzeppelin/test-helpers": "^0.5.5",
"truffle-assertions": "0.9.2",
"truffle-flattener": "git+https://github.com/witnet/truffle-flattener.git#single-experimental",
"@truffle/hdwallet-provider": "1.2.1",
"truffle-plugin-verify": "0.5.4",
"truffle-verify": "1.0.8"
}
}