-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "Avl-Tree-Solidity",
"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 ",
"test:ci": "scripts/run-test.sh",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint src/**/*.js test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/"
},
"repository": {
"type": "git",
"url": "git+"
},
"author": "Ashish Rajpurohit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xAshish/Avl-Tree-solidity.git"
},
"homepage": "https://github.com/0xAshish/Avl-Tree-solidity.git",
"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",
"chai-bignumber": "3.0.0",
"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",
"ethereumjs-wallet": "0.6.2",
"ethers": "4.0.13",
"safe-buffer": "5.1.2",
"solium": "^1.1.8",
"truffle": "^4.1.14",
"web3": "^1.0.0-beta.30"
},
"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.3",
"merkle-patricia-tree": "2.3.2",
"openzeppelin-solidity": "1.12.0"
}
}