diff --git a/bower.json b/bower.json index 01aaea4..672dd70 100644 --- a/bower.json +++ b/bower.json @@ -1,9 +1,29 @@ { "name": "Proj4Leaflet", - "version": "0.7.2", + "version": "1.0.1", "homepage": "https://github.com/kartena/Proj4Leaflet", "authors": [ - "Per Liedman (https://github.com/perliedman/)" + "Per Liedman (https://github.com/perliedman/)", + "Peter Thorin (https://github.com/pthorin/)", + "Semone Kallin Thander (https://github.com/semone/)", + "S. Andrew Sheppard (https://github.com/sheppard)", + "Leigh Hunt (https://github.com/leighghunt/)", + "Andris Nolendorfs (https://github.com/theashyster)", + "Vladimir Agafonkin (https://github.com/mourner)", + "Juuso Lehtinen (https://github.com/jleh)", + "Mattias Bengtsson (https://github.com/moonlite/)", + "Denis Rykov (http://github.com/drnextgis) ", + "Jose manuel Vivó Arnal (Chema) (http://github.com/jmvivo) ", + "Daniel Garcia (http://github.com/keyjote) ", + "Mathieu Leplatre (https://github.com/leplatrem)", + "Benny Lichtner (http://github.com/bennlich) ", + "Christopher Fredén (https://github.com/icetan/)", + "dpzaba (http://github.com/dpzaba) ", + "Edward Mac Gillavry (http://github.com/emacgillavry) ", + "Emil Goude (http://github.com/Stockholmsnovis) ", + "Simon Legner (http://github.com/simon04) ", + "Tom Blackmore (http://github.com/tablackmore) ", + "Fabien NICOLLET (https://github.com/fnicollet)" ], "description": "Smooth Proj4js integration with Leaflet", "moduleType": [ @@ -28,7 +48,6 @@ "tests" ], "dependencies": { - "proj4": "^2.0.0", - "leaflet": "~0.7.2" + "proj4": "^2.3.14" } } diff --git a/package.json b/package.json index 6376ab0..4cf9bbb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "proj4leaflet", - "version": "1.0.0", + "version": "1.0.1", "description": "Smooth Proj4js integration with Leaflet", "main": "src/proj4leaflet.js", "directories": { @@ -22,15 +22,26 @@ ], "author": "Per Liedman (https://github.com/perliedman/)", "contributors": [ - "Mattias Bengtsson (https://github.com/moonlite/)", - "Christopher Fredén (https://github.com/icetan/)", "Peter Thorin (https://github.com/pthorin/)", + "Semone Kallin Thander (https://github.com/semone/)", "S. Andrew Sheppard (https://github.com/sheppard)", "Leigh Hunt (https://github.com/leighghunt/)", + "Andris Nolendorfs (https://github.com/theashyster)", "Vladimir Agafonkin (https://github.com/mourner)", + "Juuso Lehtinen (https://github.com/jleh)", + "Mattias Bengtsson (https://github.com/moonlite/)", + "Denis Rykov (http://github.com/drnextgis) ", + "Jose manuel Vivó Arnal (Chema) (http://github.com/jmvivo) ", + "Daniel Garcia (http://github.com/keyjote) ", "Mathieu Leplatre (https://github.com/leplatrem)", - "fnicollet (https://github.com/fnicollet)", - "Semone Kallin Thander (https://github.com/semone/)" + "Benny Lichtner (http://github.com/bennlich) ", + "Christopher Fredén (https://github.com/icetan/)", + "dpzaba (http://github.com/dpzaba) ", + "Edward Mac Gillavry (http://github.com/emacgillavry) ", + "Emil Goude (http://github.com/Stockholmsnovis) ", + "Simon Legner (http://github.com/simon04) ", + "Tom Blackmore (http://github.com/tablackmore) ", + "Fabien NICOLLET (https://github.com/fnicollet)" ], "license": "BSD-2-Clause", "bugs": { diff --git a/util/contrib.sh b/util/contrib.sh new file mode 100644 index 0000000..6444fed --- /dev/null +++ b/util/contrib.sh @@ -0,0 +1,9 @@ +if [ -f contributors ]; +then + rm contributors +fi +for x +in `curl -K contributors.curl | grep -E -w 'url' | grep -o -E 'https[^"]+'` +do + curl -XGET --url $x -o -| grep -E 'name|html_url' >> contributors +done diff --git a/util/contributors.curl b/util/contributors.curl new file mode 100644 index 0000000..d5847bb --- /dev/null +++ b/util/contributors.curl @@ -0,0 +1,3 @@ +-XGET +--url "https://api.github.com/repos/kartena/Proj4Leaflet/contributors?anon=0" +-o -