From b9819b8efaff26f5721de3e7f4a4c78d64a8b4eb Mon Sep 17 00:00:00 2001 From: ssube Date: Fri, 1 Nov 2019 05:57:39 -0500 Subject: [PATCH] fix(build): publish npm packages to npmjs.org --- package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 74ea32b..99e2da3 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,8 @@ "test": "test" }, "scripts": { - "test": "out/harness.js" + "build": "make", + "test": "make test" }, "author": "ssube", "license": "MIT", @@ -80,5 +81,8 @@ }, "resolutions": { "lodash": "4.17.15" + }, + "publishConfig": { + "registry": "https://registry.npmjs.org" } }