From 98951a6433bf0e015e07acf5e1984981fdb34096 Mon Sep 17 00:00:00 2001 From: Gabriel Cardona Date: Mon, 1 Mar 2021 18:22:29 -0800 Subject: [PATCH] * Add `contributors` to package.json. * Add `console` yarn script to fire up the hardhat console. --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 904810b..ff183e2 100644 --- a/package.json +++ b/package.json @@ -17,10 +17,14 @@ "main": "index.js", "repository": "https://github.com/ava-labs/smart-contract-quickstart", "author": "Connor Daly ", + "contributors": [ + "Gabriel Cardona " + ], "license": "MIT", "scripts": { "precompile": "rimraf ./build/", "compile": "npx hardhat compile", + "console": "npx hardhat console", "pretest": "yarn compile", "test": "npx hardhat test", "deploy": "npx hardhat run scripts/deploy.js",