This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.97 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
54
{
"name": "witnet-truffle-box",
"version": "0.1.0",
"description": "A truffle box enabling Solidity contracts to query the Witnet Decentralized Oracle Network",
"main": "witnet/lib/index.js",
"repository": "https://github.com/witnet/truffle-box",
"author": "Adán SDPC <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "truffle test",
"console": "truffle console",
"compile": "npm run compile-requests && npm run compile-contracts",
"compile-requests": "chmod +x ./node_modules/witnet-requests/src/ethereum/truffle/rad2sol.js && ./node_modules/witnet-requests/src/ethereum/truffle/rad2sol.js",
"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"
},
"dependencies": {
"cbor": "^5.0.1",
"openzeppelin-solidity": "^2.4.0",
"truffle-plugin-verify": "^0.3.5",
"witnet-ethereum-bridge": "git+https://github.com/witnet/witnet-ethereum-bridge.git#master",
"witnet-requests": "^0.1.8"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-plugin-inline-script-import": "^0.0.4",
"babel-register": "^6.26.0",
"babel-traverse": "^6.26.0",
"babylon": "^6.18.0",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"ethlint": "^1.2.5",
"ganache-cli": "^6.7.0",
"node-eval": "^2.0.0",
"protocol-buffers": "^4.1.0",
"solidity-coverage": "^0.5.11",
"truffle": "^5.1.1",
"truffle-assertions": "^0.9.2"
}
}