-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "solidity-call-function",
"version": "0.0.1",
"description": "A solidity project to show how can invoke functions in smart contract using the call(...) function.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test-win": "truffle.cmd test",
"test-os": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salazarguille/solidity-call-function.git"
},
"keywords": ["solidity","call","delegatecall","blockchain","erc20","hash", "keccak256", "function"],
"author": "guillesalazar@gmail.com",
"license": "ISC",
"homepage": "https://github.com/salazarguille/solidity-call-function.git#readme",
"dependencies": {
"bluebird": "3.5.1",
"ethereumjs-util": "5.1.5",
"jsonfile": "4.0.0",
"lodash": "4.17.5",
"moment": "2.21.0",
"truffle-core": "4.1.13",
"web3": "1.0.0-beta.33",
"web3-utils": "1.0.0-beta.33",
"zeppelin-solidity": "1.7.0"
},
"devDependencies": {
"chai": "4.1.2",
"chai-bignumber": "2.0.2",
"chai-as-promised": "^7.1.1",
"dotenv": "5.0.1",
"eth-gas-reporter": "0.1.10",
"ethereumjs-wallet": "0.6.0",
"ganache-cli": "6.0.3",
"leche": "2.2.3",
"mocha": "5.0.4",
"solidity-coverage": "0.5.5",
"solium": "1.1.2",
"truffle": "4.1.13",
"truffle-config": "1.0.6",
"truffle-hdwallet-provider": "git+https://github.com/trufflesuite/truffle-hdwallet-provider.git#71520a2"
}
}