Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidosomething committed Jul 22, 2016
1 parent f2f9b4a commit 490146a
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,12 @@ Please provide examples of the URLs you are parsing with each PR.
## License

Copyright Jason McCreary & Paul Irish. Licensed under MIT.
http:https://opensource.org/licenses/MIT
<http:https://opensource.org/licenses/MIT>

## Changelog

- **2016-07-22** - 1.1.0, update and add linters for package.json, readme.
Re-publish to NPM.
- **2016-07-11** - Changelog started (readme formatting and installation
instructions updated)

14 changes: 14 additions & 0 deletions markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"default": true,
"MD002": false,
"MD003": { "style": "atx" },
"MD004": { "style": "dash" },
"MD007": { "indent": 4 },
"MD009": false,
"MD012": false,
"MD013": false,
"MD026": false,
"MD033": false,
"MD036": false,
"MD041": false
}
36 changes: 28 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,43 @@
{
"name": "git-open",
"version": "1.0.2",
"description": "Type `git open` to open the GitHub page or website for a repository.",
"version": "1.1.0",
"description": "Type `git open` to open the GitHub/GitLab/Bitbucket homepage for a repository.",
"author": "Paul Irish (http:https://paulirish.com/)",
"license": "MIT",
"homepage": "https://github.com/paulirish/git-open",
"bugs": {
"url": "https://github.com/paulirish/git-open/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paulirish/git-open.git"
},
"contributors": [
"Paul Irish (http:https://paulirish.com/)",
"Jason McCreary <[email protected]> (http:https://jason.pureconcepts.net/)",
"David O'Trakoun <[email protected]> (https://davidosomething.com/)"
],
"keywords": [
"git",
"cli"
],
"engines": {
"node": ">=0.10.3",
"npm": ">=2.0.0"
},
"preferGlobal": true,
"bin": {
"git-open": "git-open",
"git-home" : "git-open"
"git-home": "git-open"
},
"author": "Paul Irish",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulirish/git-open/issues"
"scripts": {
"lint:package": "echo \"\nLinting package.json\" && pjv --recommendations --warnings && echo \"OK\n\n\"",
"lint:readme": "echo \"\nLinting README.md\" && markdownlint --config markdownlint.json README.md && echo \"OK\n\n\"",
"test": "npm run --silent lint:package && npm run --silent lint:readme"
},
"homepage": "https://github.com/paulirish/git-open"
"dependencies": {},
"devDependencies": {
"markdownlint": "^0.2.0",
"package-json-validator": "^0.6.1"
}
}

0 comments on commit 490146a

Please sign in to comment.