From 0a682b050da68184ca5a08a6ccbace1b5261a311 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Wed, 4 Aug 2021 13:57:04 -0500 Subject: [PATCH] Change the app name in package.json This changes the app name in package.json from 'abci' to 'js-abci' because 'npm install abci' throws the following error: "npm ERR! code ENOSELF npm ERR! Refusing to install package with name "abci" under a package npm ERR! also called "abci". Did you name your project the same npm ERR! as the dependency you're installing? npm ERR! npm ERR! For more information, see: npm ERR! " --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f31f1d6..35ee4fe 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "abci", + "name": "js-abci", "version": "7.0.0", "description": "Tendermint ABCI server", "main": "index.js",