From 387535621f4b9c97f7c551018bc6297930cc6d65 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 10 Nov 2016 18:25:37 +0100 Subject: [PATCH 1/3] package.json: Replace invalid "authors" array by "author" --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index 556790d..b11b876 100644 --- a/package.json +++ b/package.json @@ -26,9 +26,7 @@ "mocha", "chai" ], - "authors": [ - "Dan Gebhardt" - ], + "author": "Dan Gebhardt", "license": "Apache-2.0", "bugs": { "url": "https://github.com/switchfly/ember-cli-mocha/issues" From 9c262b74bf1b22202a4f7eaafff59b62f75606f5 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 10 Nov 2016 19:13:08 +0100 Subject: [PATCH 2/3] package.json: Sort in documented order --- package.json | 70 ++++++++++++++++++++++++++-------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/package.json b/package.json index b11b876..9d438be 100644 --- a/package.json +++ b/package.json @@ -2,38 +2,45 @@ "name": "ember-cli-mocha", "version": "0.11.0", "description": "Mocha and Chai tests for ember-cli applications", + "keywords": [ + "chai", + "ember", + "ember-addon", + "mocha" + ], + "homepage": "https://github.com/switchfly/ember-cli-mocha", + "bugs": { + "url": "https://github.com/switchfly/ember-cli-mocha/issues" + }, + "license": "Apache-2.0", + "author": "Dan Gebhardt", "main": "index.js", "directories": { "doc": "doc", "test": "tests" }, - "scripts": { - "build": "ember build", - "start": "ember server", - "test": "ember try:testall" - }, - "ember-addon": { - "configPath": "tests/dummy/config", - "main": "index.js" - }, "repository": { "type": "git", "url": "https://github.com/switchfly/ember-cli-mocha.git" }, - "keywords": [ - "ember-addon", - "ember", - "mocha", - "chai" - ], - "author": "Dan Gebhardt", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/switchfly/ember-cli-mocha/issues" + "scripts": { + "build": "ember build", + "start": "ember server", + "test": "ember try:testall" }, - "homepage": "https://github.com/switchfly/ember-cli-mocha", - "engines": { - "node": ">= 0.10.0" + "dependencies": { + "broccoli-babel-transpiler": "^5.5.0", + "broccoli-concat": "^2.1.0", + "broccoli-funnel": "^1.0.1", + "broccoli-merge-trees": "^1.1.1", + "chai": "^3.5.0", + "ember-cli-babel": "^5.1.6", + "ember-cli-test-loader": "^1.1.0", + "ember-cli-version-checker": "^1.1.6", + "ember-mocha": "^0.9.1", + "exists-sync": "0.0.3", + "mocha": "^2.5.3", + "resolve": "^1.1.7" }, "devDependencies": { "broccoli-asset-rev": "^2.4.2", @@ -56,18 +63,11 @@ "ember-try": "^0.2.2", "loader.js": "^4.0.1" }, - "dependencies": { - "broccoli-babel-transpiler": "^5.5.0", - "broccoli-concat": "^2.1.0", - "broccoli-funnel": "^1.0.1", - "broccoli-merge-trees": "^1.1.1", - "chai": "^3.5.0", - "ember-cli-babel": "^5.1.6", - "ember-cli-test-loader": "^1.1.0", - "ember-cli-version-checker": "^1.1.6", - "ember-mocha": "^0.9.1", - "exists-sync": "0.0.3", - "mocha": "^2.5.3", - "resolve": "^1.1.7" + "engines": { + "node": ">= 0.10.0" + }, + "ember-addon": { + "configPath": "tests/dummy/config", + "main": "index.js" } } From c517ac29182bd67dfa6cbadd3f3f885ff97cf637 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 10 Nov 2016 19:46:10 +0100 Subject: [PATCH 3/3] package.json: Update repository links --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9d438be..9d8e08b 100644 --- a/package.json +++ b/package.json @@ -8,9 +8,9 @@ "ember-addon", "mocha" ], - "homepage": "https://github.com/switchfly/ember-cli-mocha", + "homepage": "https://github.com/ember-cli/ember-cli-mocha", "bugs": { - "url": "https://github.com/switchfly/ember-cli-mocha/issues" + "url": "https://github.com/ember-cli/ember-cli-mocha/issues" }, "license": "Apache-2.0", "author": "Dan Gebhardt", @@ -21,7 +21,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/switchfly/ember-cli-mocha.git" + "url": "https://github.com/ember-cli/ember-cli-mocha.git" }, "scripts": { "build": "ember build",