-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "smart-contract-practice",
"version": "1.0.0",
"description": "Practicing with smart contract and Ethereum network using solidity",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-coverage": "nyc --reporter=text-lcov mocha> coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thanhnguyennguyen/smart-contract-practice.git"
},
"keywords": [
"solidity",
"smart",
"contract",
"NguyenNguyen"
],
"author": "NguyenNguyen ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/thanhnguyennguyen/smart-contract-practice/issues"
},
"homepage": "https://github.com/thanhnguyennguyen/smart-contract-practice#readme",
"dependencies": {
"node-gyp": "^3.7.0",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.6",
"web3": "^1.0.0-beta.26",
"webpack": "^4.12.0",
"websocket": "^1.0.26",
"fs-extra": "^3.0"
},
"devDependencies": {
"nyc": "^12.0.2",
"mocha": "^5.2.0",
"ganache-cli": "^6.1.0"
}
}