Skip to content

Commit

Permalink
Fix repo info in package.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Jun 26, 2019
1 parent d62a4b3 commit 494d398
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Eslint rules for linting for anti-patterns in Ember applications.",
"main": "lib/index.js",
"directories": {
"doc": "doc",
"lib": "lib",
"test": "tests"
},
"scripts": {
Expand All @@ -13,7 +13,10 @@
"test-server": "mocha --recursive --growl --watch tests",
"generate-authors": "git shortlog -sne | cut -f 2 | sort | uniq > AUTHORS.txt"
},
"repository": "ember-best-practices/eslint-plugin-ember-best-practices",
"repository": {
"type": "git",
"url": "git+https://github.com/ember-best-practices/eslint-plugin-ember-best-practices.git"
},
"engines": {
"node": ">= 6.0.0"
},
Expand All @@ -34,5 +37,9 @@
},
"dependencies": {
"requireindex": "^1.1.0"
}
},
"bugs": {
"url": "https://github.com/ember-best-practices/eslint-plugin-ember-best-practices/issues"
},
"homepage": "https://github.com/ember-best-practices/eslint-plugin-ember-best-practices#readme"
}

0 comments on commit 494d398

Please sign in to comment.