diff --git a/README.md b/README.md index 59e3f72..5ada615 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,6 @@ a "hello world" demo of Neon ```bash git clone https://github.com/amilajack/neon-hello cd neon-hello -yarn -yarn test +npm install # or yarn +npm test # or yarn test ``` \ No newline at end of file diff --git a/package.json b/package.json index e0e9d9e..54fee00 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,8 @@ "neon-cli": "^0.3.3" }, "scripts": { - "install": "neon build --release" + "build": "neon build --release", + "install": "npm run build", + "test": "npm run build" } }