-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "pyrrha-consensus",
"version": "0.6.1",
"private": true,
"description": "Ethereum smart contracts for Pyrrha version of Pandora Boxchain",
"scripts": {
"lint": "npx solium -d contracts/",
"compile": "npx truffle compile",
"test": "./test/test.sh",
"test:coverage": "SOLIDITY_COVERAGE=true ./test/test.sh"
},
"author": "Dr Maxim Orlovsky <orlovsky@pandora.foundation>",
"contributors": [
"Dr Maxim Orlovsky <orlovsky@pandora.foundation>",
"Kostiantyn Smyrnov <kostysh@gmail.com>"
],
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.3.1",
"@babel/register": "7.0.0",
"coveralls": "3.0.2",
"eslint": "5.11.1",
"ethereumjs-abi": "0.6.6",
"ganache-cli": "6.2.5",
"github-utils": "git+https://github.com/pandoraboxchain/github-utils.git#v0.1.4",
"openzeppelin-solidity": "2.0.0",
"solc": "0.5.3",
"solidity-coverage": "0.5.11",
"solium": "1.2.2",
"solium-plugin-zeppelin": "0.0.2",
"truffle": "4.1.14",
"truffle-privatekey-provider": "1.0.0",
"rimraf": "2.6.3",
"chai": "4.2.0",
"chai-bignumber": "3.0.0"
},
"license": "MIT",
"dependencies": {
"babel-register": "6.26.0",
"web3": "1.0.0-beta.37"
}
}