From 73b9b1ee27d22a392be4d7dce0d765bc6dc328b2 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 8 Feb 2018 16:31:49 -0800 Subject: [PATCH 1/2] Add engines field to warn node 4 users --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 8b532bd..5ecc257 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,9 @@ "@babel/plugin-transform-async-to-generator": "^7.0.0-beta.39", "standard": "*" }, + "engines": { + "node": ">=6" + }, "keywords": [ "thanks", "open source", From 7b2e29ab4020b0fdacd7a1bf2e1c68612a0d0846 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 8 Feb 2018 16:31:53 -0800 Subject: [PATCH 2/2] fixpack --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 5ecc257..dbe41b4 100644 --- a/package.json +++ b/package.json @@ -40,18 +40,18 @@ "node": ">=6" }, "keywords": [ - "thanks", - "open source", - "sustainability", "donate", - "support", - "funding", - "patreon", "donor", - "thank you", + "earn", "fund", + "funding", + "open source", + "patreon", + "support", "sustain", - "earn" + "sustainability", + "thank you", + "thanks" ], "license": "MIT", "main": "index.js", @@ -61,7 +61,7 @@ }, "scripts": { "build": "mkdir dist && babel src/cmd.js > dist/cmd.js && chmod +x ./dist/cmd.js", - "test": "standard && npm run build && ./dist/cmd.js --no-open", - "prepublish": "npm run build" + "prepublish": "npm run build", + "test": "standard && npm run build && ./dist/cmd.js --no-open" } }