This commit is contained in:
David O'Trakoun 2016-07-22 02:01:22 -04:00
parent f2f9b4ad93
commit 490146aacc
No known key found for this signature in database
GPG key ID: 10BABFF393314390
4 changed files with 47 additions and 9 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
node_modules/

View file

@ -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://opensource.org/licenses/MIT
<http://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
markdownlint.json Normal file
View file

@ -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
}

View file

@ -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://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://paulirish.com/)",
"Jason McCreary <jason@pureconcepts.net> (http://jason.pureconcepts.net/)",
"David O'Trakoun <me@davidosomething.com> (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"
}
}