geo-coordinates-parser 1.6.1 → 1.6.2

Sign up to get free protection for your applications and to get access to all the features.
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 V1.6.0 TO BETTER SUPPORT 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.1",
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
  }