-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 815 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 815 Bytes
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
{
"name": "solidity-techniques",
"version": "1.0.0",
"description": "solidity techniques explained",
"main": "index.js",
"scripts": {
"compile": "npx truffle compile",
"test": "./scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leekt216/solidity-techniques.git"
},
"keywords": [
"solidity"
],
"author": "leekt216@gmail.com",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/leekt216/solidity-techniques/issues"
},
"homepage": "https://github.com/leekt216/solidity-techniques#readme",
"dependencies": {
"chai": "^4.2.0",
"ganache-cli": "^6.9.1",
"solidity-coverage": "^0.7.5",
"truffle": "^5.1.27",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-hdwallet-provider-klaytn": "^1.0.13-a"
}
}