forked from witnet/witnet-solidity-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "witnet-ethereum-bridge",
"version": "0.1.0",
"description": "Witnet-Ethereum Bridge Interface",
"main": "",
"scripts": {
"test": "truffle test",
"console": "truffle console",
"postinstall": "npm run compile-contracts",
"compile-contracts": "truffle compile --all",
"fmt": "solium -d contracts && eslint ./test",
"fmt!": "solium -d contracts --fix && eslint ./test --fix",
"solium": "solium -d contracts",
"solium:fix": "solium -d contracts --fix",
"lint": "eslint ./test",
"lint:fix": "eslint ./test --fix",
"coverage": "solidity-coverage"
},
"author": "Witnet Foundation <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-ethereum-bridge.git"
},
"keywords": [
"bridge",
"witnet",
"ethereum"
],
"license": "GPL-3.0",
"dependencies": {
"truffle-hdwallet-provider": "^1.0.7"
},
"devDependencies": {
"openzeppelin-solidity": "2.3.0",
"js-sha256": "^0.9.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"ethlint": "^1.2.4",
"ganache-cli": "^6.4.3",
"solidity-coverage": "^0.5.11",
"truffle": "^5.0.20",
"truffle-assertions": "^0.9.0"
}
}