forked from maticnetwork/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.42 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
{
"name": "matic-protocol",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"testrpc": "ganache-cli --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit 13000000",
"truffle": "truffle",
"truffle:test": "truffle test",
"truffle:compile": "truffle compile",
"truffle:migrate:1": "truffle migrate --to 2",
"truffle:migrate:2": "truffle migrate --network matic_dev --from 3 --to 3",
"truffle:migrate": "npm run truffle:migrate:1 && npm run truffle:migrate:2",
"test:ci": "scripts/run-test.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": [
"lint:sol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jdkanani/protocol.git"
},
"author": "Jaynti Kanani <jdkanani@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdkanani/protocol/issues"
},
"homepage": "https://github.com/jdkanani/protocol#readme",
"config": {
"mnemonics": "clock radar mass judge dismiss just intact mind resemble fringe diary casino"
},
"devDependencies": {
"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",
"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",
"pre-commit": "^1.2.2",
"safe-buffer": "5.1.2",
"solium": "^1.1.8",
"truffle": "^5.0.10",
"web3": "^1.0.0-beta.33",
"web3-eth-abi": "^1.0.0-beta.51"
},
"dependencies": {
"eth-sig-util": "2.1.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-block": "2.1.0",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.0.0",
"ganache-cli": "6.2.4",
"merkle-patricia-tree": "2.3.2",
"openzeppelin-solidity": "^2.2.0",
"solidity-rlp": "^2.0.0",
"truffle-hdwallet-provider": "^1.0.1"
}
}