diff --git a/.npmignore b/.npmignore index 995b26a7..d43e2979 100644 --- a/.npmignore +++ b/.npmignore @@ -1,23 +1,41 @@ .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/Gruntfile.js b/Gruntfile.js index a1e94363..661a030f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -71,9 +71,9 @@ module.exports = function (grunt) { }); grunt.loadNpmTasks('grunt-contrib-requirejs'); + grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-jsdoc'); grunt.loadNpmTasks('grunt-karma'); - grunt.loadNpmTasks('grunt-contrib-copy'); grunt.registerTask('default', ['karma', 'jsdoc', 'requirejs', 'copy']); }; \ No newline at end of file diff --git a/package.json b/package.json index cb67fe5b..13059ece 100644 --- a/package.json +++ b/package.json @@ -14,12 +14,14 @@ "ESA Consortium Contact " ], "directories": { - "example": "examples", - "test": "test" + "lib": "./src", + "doc": "./api-doc", + "test": "./test", + "example": "./examples" }, "repository": { "type": "git", - "url": "git+https://github.com/NASAWorldWind/WebWorldWind.git" + "url": "https://github.com/NASAWorldWind/WebWorldWind.git" }, "scripts": { "build": "grunt",