mirror of
https://github.com/paulirish/git-open.git
synced 2026-09-10 07:26:15 -04:00
1.1.0
This commit is contained in:
parent
f2f9b4ad93
commit
490146aacc
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
node_modules/
|
||||
|
|
@ -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
14
markdownlint.json
Normal 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
|
||||
}
|
||||
36
package.json
36
package.json
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue