-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 941 Bytes
/
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
{
"name": "truffle-shavings",
"version": "1.0.0",
"description": "Truffle Boilerplate with solium, linguist, zeppelin, migrations, tests &tc",
"scripts": {
"test": "truffle test test/*.test.js",
"deploy": "truffle migrate --reset --compile-all",
"lint": "solium --dir contracts/",
"lint:watch": "solium --watch --dir contracts/",
"lint:fix": "solium --dir contracts/ --fix"
},
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {},
"dependencies": {
"dotenv": "^5.0.1",
"solium": "^1.1.7",
"truffle-hdwallet-provider": "^1.0.0-web3one.0",
"web3-utils": "^1.0.0-beta.34",
"zeppelin-solidity": "^1.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/okwme/truffle-boilerplate.git"
},
"keywords": [
"truffle",
"ethereum",
"web3"
],
"author": "Billy Rennekamp <[email protected]>",
"license": "ISC"
}