From 7383eca03ee463013a4a6e83cd99045b97fbc8c9 Mon Sep 17 00:00:00 2001 From: Gustavo Henke Date: Tue, 14 Aug 2018 01:36:43 +1000 Subject: [PATCH] Clean up package.json a bit --- package.json | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 0d9cf221..4530e053 100644 --- a/package.json +++ b/package.json @@ -2,21 +2,16 @@ "name": "concurrently", "version": "3.6.1", "description": "Run commands concurrently", - "main": "src/main.js", + "main": "index.js", "bin": { - "concurrent": "./src/main.js", - "concurrently": "./src/main.js" + "concurrently": "./bin/concurrently.js" }, "engines": { - "node": ">=4.0.0" + "node": ">=6.0.0" }, "scripts": { "lint": "eslint .", - "test": "mocha", - "echo": "echo", - "echo-test": "echo test", - "echo-sound-beep": "echo beep", - "echo-sound-boop": "echo boop" + "test": "jest" }, "repository": { "type": "git", @@ -32,10 +27,6 @@ ], "author": "Kimmo Brunfeldt", "license": "MIT", - "bugs": { - "url": "https://github.com/kimmobrunfeldt/concurrently/issues" - }, - "homepage": "https://github.com/kimmobrunfeldt/concurrently", "dependencies": { "chalk": "^2.4.1", "commander": "2.6.0",