Garrett Johnson 5 years ago
parent
commit
a647c78438
2 changed files with 21 additions and 6 deletions
  1. 7 1
      CHANGELOG.md
  2. 14 5
      package.json

+ 7 - 1
CHANGELOG.md

@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
 
-## Unreleased
+## [0.1.1] - 2020-06-08
+### Changed
+
+- License text in README to remove unnecessary copy.
+
+
+## [0.1.0] - 2020-05-29
 
 - Initial release.

+ 14 - 5
package.json

@@ -1,12 +1,13 @@
 {
   "name": "3d-tiles-renderer",
-  "version": "0.0.1",
+  "version": "0.1.0",
   "description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
   "keywords": [
     "3d-tiles",
     "3dtiles",
     "graphics",
-    "b3dm",
+		"b3dm",
+		"gltf",
     "threejs",
     "rendering",
     "geometry",
@@ -14,7 +15,11 @@
     "cesium"
   ],
   "type": "module",
-  "main": "src/index.js",
+	"main": "src/index.js",
+	"module": "src/index.js",
+	"files": [
+		"src/*"
+	],
   "scripts": {
     "start": "concurrently \"parcel watch example/*.html --out-dir ./example/bundle/ --public-url . --no-cache\" \"static-server\"",
     "lint": "eslint src/**.js && tsc -p tsconfig.json --noEmit",
@@ -22,8 +27,12 @@
   },
   "repository": {
     "type": "git",
-    "url": "git@github.jpl.nasa.gov:gkjohnso/3d-tiles-renderer-js.git"
-  },
+    "url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
+	},
+	"bugs": {
+    "url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
+	},
+	"homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
   "author": "Garrett Johnson <gkjohnso@jpl.nasa.gov>",
   "license": "Apache-2.0",
   "devDependencies": {