From f4cc4d2f8fe816882151bf8df3357c19f5a1be59 Mon Sep 17 00:00:00 2001 From: Jackie Ng Date: Tue, 7 Jun 2016 01:21:00 +1000 Subject: [PATCH] Update package.json and README.md --- README.md | 4 ++-- package.json | 20 ++++++++++++++++---- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 06ee43a..6707f14 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # VSCode Map Preview -This extension provides the ability to preview spatial data files / snippets on a map +This extension provides the ability to preview spatial data files and snippets on a map # Supported Formats @@ -30,4 +30,4 @@ See attached gif for an example: # Caveats/Limitations * The data you are previewing must be convertible to [Web Mercator](http://wiki.openstreetmap.org/wiki/EPSG:3857), in order to properly overlay against any of the provided base map layers. - * Will probably choke on really large data files (this extension is really meant for quick-and-dirty previews of small files/snippets) \ No newline at end of file + * Will probably choke on really large data files (this extension is really meant for quick-and-dirty previews of small files and snippets) \ No newline at end of file diff --git a/package.json b/package.json index 055bfb5..749219f 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,27 @@ { "name": "vscode-map-preview", - "displayName": "vscode-map-preview", - "description": "VSCode extension for visually previewing geographic data files (GeoJSON, KML, etc)", - "version": "0.0.1", - "publisher": "jumpinjackie", + "displayName": "VSCode Map Preview", + "description": "VSCode extension for visually previewing geospatial file content (GeoJSON, KML, etc) on a map", + "version": "0.1.0", + "private": true, + "publisher": "Jackie Ng", "engines": { "vscode": "^1.0.0" }, + "repository": { + "type": "git", + "url": "https://github.com/jumpinjackie/vscode-map-preview" + }, "categories": [ "Other" ], + "keywords": [ + "map", + "gis", + "geospatial", + "geojson", + "kml" + ], "activationEvents": [ "onCommand:map.preview" ],