forked from maticnetwork/contracts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"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",
"test": "truffle test",
"test-ci": "scripts/run-test.sh",
"lint-contracts": "solhint -d contracts/**/*.sol",
"lint-js": "eslint src/**/*.js test/**/*.js",
"lint": "npm run lint-contracts && npm run lint-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdkanani/protocol.git"
},
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdkanani/protocol/issues"
},
"homepage": "https://github.com/jdkanani/protocol#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bip39": "^2.5.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-wallet": "^0.6.0",
"safe-buffer": "^5.1.1",
"solhint": "^1.1.10",
"web3": "^1.0.0-beta.30"
},
"dependencies": {
"eth-sig-util": "^1.4.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-block": "^1.7.1",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.2",
"ganache-cli": "^6.0.3",
"merkle-patricia-tree": "^2.3.0",
"truffle": "^4.0.1"
}
}