forked from maticnetwork/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.21 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "matic-protocol",
"version": "0.3.2",
"description": "",
"main": "index.js",
"verify": {
"contracts": "RootChain StakeManager"
},
"scripts": {
"testrpc": "ganache-cli --hardfork istanbul --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' -p 9545 --gasLimit 10000000 --gasPrice 0 --allowUnlimitedContractSize --accounts 200",
"template:process": "node scripts/process-templates.js",
"truffle": "truffle",
"truffle:test": "truffle test",
"truffle:coverage": "truffle run coverage",
"truffle:compile": "truffle compile",
"truffle:migrate": "scripts/run-migration.sh",
"truffle:migrate:dev": "truffle migrate --network development",
"truffle:migrate:dev:bor": "truffle migrate --network bor",
"truffle:verify": "truffle run verify $npm_package_verify_contracts --network ropsten",
"test": "truffle test",
"coverage": "scripts/run-coverage.sh",
"test:ci": "scripts/run-test.sh",
"bor:simulate": "cd test-blockchain && bash run-docker.sh",
"bor:clean": "cd test-blockchain && bash stop-docker.sh",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/"
},
"pre-commit": [],
"repository": {
"type": "git",
"url": "https://github.com/maticnetwork/contracts.git"
},
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maticnetwork/contracts/issues"
},
"homepage": "https://github.com/maticnetwork/contracts",
"config": {
"mnemonics": "clock radar mass judge dismiss just intact mind resemble fringe diary casino"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.5",
"babel-cli": "^6.26.0",
"babel-eslint": "10.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bip39": "^2.5.0",
"bluebird": "^3.5.5",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"eth-gas-reporter": "0.1.12",
"eth-sig-util": "^2.1.1",
"ethereumjs-wallet": "0.6.2",
"ethers": "4.0.13",
"moonwalker": "github:atvanguard/moonwalker#4c4592e2d6c1744fbcd9452cf0f00e9beb236b21",
"pre-commit": "^1.2.2",
"safe-buffer": "5.1.2",
"solidity-coverage": "^0.7.4",
"solium": "^1.1.8",
"truffle": "5.0.34",
"web3": "^1.0.0-beta.33",
"web3-eth-abi": "^1.0.0-beta.51",
"truffle-contract-size": "^1.0.1"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.4.0",
"commander": "^4.0.1",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-block": "2.1.0",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.0.0",
"ganache-cli": "^6.8.0-istanbul.0",
"glob": "^7.1.6",
"merkle-patricia-tree": "2.3.2",
"nunjucks": "^3.2.0",
"openzeppelin-solidity": "2.2.0",
"solidity-rlp": "^2.0.0",
"truffle-plugin-verify": "^0.3.8"
}
}