From 7e658a8b68c740f8fe792afdbfae4635b470b95a Mon Sep 17 00:00:00 2001 From: Beak-man Date: Thu, 6 Jul 2017 11:02:32 -0500 Subject: [PATCH] Added modifications for npm packaging and publishing --- .npmignore | 23 +++++++++++++++++++++++ package.json | 20 +++++++++++++++++--- 2 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..995b26a7 --- /dev/null +++ b/.npmignore @@ -0,0 +1,23 @@ +.idea/ +api-doc/ +apps/ +design-notes/ +examples/ +node_modules/ +performance/ +src/ +test/ +test-results/ +tools/ +.gitignore +.npmignore +.travis.yml +config.json +Gruntfile.js +HowToBuildWebWW.md +HowToCreateAndRunUnitTests.md +karma.conf.js +layout.tmpl +package-lock.json +package.json +README.md \ No newline at end of file diff --git a/package.json b/package.json index 9ad5155b..c1cd4301 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,12 @@ { - "name": "web-world-wind", + "name": "worldwind", "version": "0.0.1", "description": "Web World Wind", + "main": "worldwind.js", "homepage": "https://nasaworldwind.github.io/", - "bugs": "https://github.com/NASAWorldWind/WebWorldWind/issues", + "bugs": { + "url": "https://github.com/NASAWorldWind/WebWorldWind/issues" + }, "license": "NASA-1.3", "author": "NASA", "contributors": [ @@ -39,5 +42,16 @@ "karma-junit-reporter": "^1.2.0", "karma-phantomjs-launcher": "^1.0.2", "karma-requirejs": "^1.1.0" - } + }, + "dependencies": { + + }, + "keywords": [ + "worldwind", + "3D", + "globe", + "NASA", + "GIS", + "geospatial" + ] }