From 45f38876f29d29e9fa0fdde2a5f18e4c135eab0d Mon Sep 17 00:00:00 2001 From: muji Date: Thu, 14 Jan 2016 13:18:07 +0800 Subject: [PATCH 1/4] Add missing babel-register dev dep. Required for the test runner. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 53ac7be..4b10e1f 100644 --- a/package.json +++ b/package.json @@ -48,8 +48,9 @@ "devDependencies": { "babel": "^6.1.18", "babel-cli": "^6.2.0", - "babel-polyfill": "^6.2.0", "babel-eslint": "^4.1.5", + "babel-polyfill": "^6.2.0", + "babel-register": "~6.3.13", "eslint": "^1.9.0", "less": "~2.5.0", "marked-man": "~0.1.4", From 9aece2dc7edd4b8535fd739e8195912918d05716 Mon Sep 17 00:00:00 2001 From: muji Date: Thu, 14 Jan 2016 13:21:06 +0800 Subject: [PATCH 2/4] Make license field SPDX compatible. Prevents annoying npm warning. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4b10e1f..d221bcf 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "contributors": [ "Garren Smith " ], - "license": "Apache 2.0", + "license": "Apache-2.0", "bugs": { "url": "https://github.com/robertkowalski/nmo/issues" }, From 02ebc8dbb76370011ee260789ac0a4bac3720d4e Mon Sep 17 00:00:00 2001 From: muji Date: Thu, 14 Jan 2016 13:24:55 +0800 Subject: [PATCH 3/4] Note required version of node in readme. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8a61735..309c8ea 100644 --- a/README.md +++ b/README.md @@ -2,17 +2,17 @@ `nmo` is a cli tool to manage CouchDB clusters and nodes. +Requires [node][https://nodejs.org] >= 4.0. + ## Installation ``` - npm install -g nmo ``` ## Contributing -It is written in ES6 and is using promises and generators for control -flow. +It is written in ES6 and uses promises and generators for control flow. ## Help From 50b1c3cf2e7b1012377b642e54ca1864d915c210 Mon Sep 17 00:00:00 2001 From: muji Date: Thu, 14 Jan 2016 13:26:21 +0800 Subject: [PATCH 4/4] Fix readme link syntax. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 309c8ea..97256c3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ `nmo` is a cli tool to manage CouchDB clusters and nodes. -Requires [node][https://nodejs.org] >= 4.0. +Requires [node](https://nodejs.org) >= 4.0. ## Installation