geo-coordinates-parser 1.6.0 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -5
package/README.md CHANGED
@@ -9,7 +9,7 @@ A Javascript function for reading a variety of coordinate formats and converting
9
9
  npm install geo-coordinates-parser
10
10
  ```
11
11
 
12
- # NOTE THAT USAGE CHANGED IN THE LAST VERSION TO BETTER SUPPOER ES6 AND COMMONJS
12
+ ## NOTE THAT USAGE CHANGED IN V1.6.0 TO BETTER SUPPORT ES6 AND COMMONJS
13
13
  ### Usage
14
14
  ```js
15
15
  const { convert } = require('geo-coordinates-parser'); //CommonJS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geo-coordinates-parser",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "A Javascript function for reading a variety of coordinate formats and converting to decimal numbers. Builds on other efforts by returning the verbatim coordinates and the decimal coordinates all in one object.",
5
5
  "type": "module",
6
6
  "main": "merge.js",
@@ -43,8 +43,5 @@
43
43
  "bugs": {
44
44
  "url": "https://github.com/ianengelbrecht/geo-coordinates-parser/issues"
45
45
  },
46
- "homepage": "https://github.com/ianengelbrecht/geo-coordinates-parser#readme",
47
- "devDependencies": {
48
- "tinyify": "^2.5.1"
49
- }
46
+ "homepage": "https://github.com/ianengelbrecht/geo-coordinates-parser#readme"
50
47
  }