-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "eth-sci",
"version": "1.1.0",
"description": "Ethereum Smart Contract Interface - a library for compiling, deploying, and interacting with the smart contracts",
"homepage": "https://github.com/mekh/eth-sci",
"main": "src/index.js",
"author": " Alexandr Mekh",
"license": "GPL-2.0",
"keywords": [
"smart",
"contract",
"solidity",
"ethereum",
"blockchain",
"compile",
"deploy",
"API",
"eth",
"web3"
],
"dependencies": {
"await-semaphore": "^0.1.3",
"big-integer": "^1.6.42",
"lodash": "latest",
"solc": "^0.5.5",
"truffle-hdwallet-provider": "^1.0.5",
"web3": "1.0.0-beta.37",
"web3-core-promievent": "1.0.0-beta.47",
"web3-utils": "^1.0.0-beta.47"
},
"repository": {
"type": "git",
"url": "https://github.com/mekh/eth-sci.git"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"bip39": "^2.5.0",
"eslint": "^5.15.1",
"eslint-plugin-unicorn": "^7.1.0",
"ethereumjs-wallet": "^0.6.3",
"ganache-cli": "^6.4.1",
"jest": "^24.5.0",
"nyc": "^13.3.0"
}
}