File tree Expand file tree Collapse file tree 4 files changed +47
-9
lines changed Expand file tree Collapse file tree 4 files changed +47
-9
lines changed Original file line number Diff line number Diff line change
1
+ node_modules /
Original file line number Diff line number Diff line change @@ -106,9 +106,12 @@ Please provide examples of the URLs you are parsing with each PR.
106
106
## License
107
107
108
108
Copyright Jason McCreary & Paul Irish. Licensed under MIT.
109
- http://opensource.org/licenses/MIT
109
+ < http://opensource.org/licenses/MIT >
110
110
111
111
## Changelog
112
112
113
+ - ** 2016-07-22** - 1.1.0, update and add linters for package.json, readme.
114
+ Re-publish to NPM.
113
115
- ** 2016-07-11** - Changelog started (readme formatting and installation
114
116
instructions updated)
117
+
Original file line number Diff line number Diff line change
1
+ {
2
+ "default" : true ,
3
+ "MD002" : false ,
4
+ "MD003" : { "style" : " atx" },
5
+ "MD004" : { "style" : " dash" },
6
+ "MD007" : { "indent" : 4 },
7
+ "MD009" : false ,
8
+ "MD012" : false ,
9
+ "MD013" : false ,
10
+ "MD026" : false ,
11
+ "MD033" : false ,
12
+ "MD036" : false ,
13
+ "MD041" : false
14
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " git-open" ,
3
- "version" : " 1.0.2" ,
4
- "description" : " Type `git open` to open the GitHub page or website for a repository." ,
3
+ "version" : " 1.1.0" ,
4
+ "description" : " Type `git open` to open the GitHub/GitLab/Bitbucket homepage for a repository." ,
5
+ "author" : " Paul Irish (http://paulirish.com/)" ,
6
+ "license" : " MIT" ,
7
+ "homepage" : " https://github.com/paulirish/git-open" ,
8
+ "bugs" : {
9
+ "url" : " https://github.com/paulirish/git-open/issues"
10
+ },
5
11
"repository" : {
6
12
"type" : " git" ,
7
13
"url" : " https://github.com/paulirish/git-open.git"
8
14
},
15
+ "contributors" : [
16
+ " Paul Irish (http://paulirish.com/)" ,
17
+ " Jason McCreary <jason@pureconcepts.net> (http://jason.pureconcepts.net/)" ,
18
+ " David O'Trakoun <me@davidosomething.com> (https://davidosomething.com/)"
19
+ ],
9
20
"keywords" : [
10
21
" git" ,
11
22
" cli"
12
23
],
24
+ "engines" : {
25
+ "node" : " >=0.10.3" ,
26
+ "npm" : " >=2.0.0"
27
+ },
28
+ "preferGlobal" : true ,
13
29
"bin" : {
14
30
"git-open" : " git-open" ,
15
- "git-home" : " git-open"
31
+ "git-home" : " git-open"
16
32
},
17
- "author " : " Paul Irish " ,
18
- "license " : " MIT " ,
19
- "bugs " : {
20
- "url " : " https://github.com/paulirish/git-open/issues "
33
+ "scripts " : {
34
+ "lint:package " : " echo \"\n Linting package.json \" && pjv --recommendations --warnings && echo \" OK \n\n\" " ,
35
+ "lint:readme " : " echo \"\n Linting README.md \" && markdownlint --config markdownlint.json README.md && echo \" OK \n\n\" " ,
36
+ "test " : " npm run --silent lint:package && npm run --silent lint:readme "
21
37
},
22
- "homepage" : " https://github.com/paulirish/git-open"
38
+ "dependencies" : {},
39
+ "devDependencies" : {
40
+ "markdownlint" : " ^0.2.0" ,
41
+ "package-json-validator" : " ^0.6.1"
42
+ }
23
43
}
You can’t perform that action at this time.
0 commit comments