Removing project references to 'incubator' (#190)

diff --git a/README.md b/README.md
index e3720f7..b43de7d 100644
--- a/README.md
+++ b/README.md
@@ -18,13 +18,13 @@
 -->
 # Apache OpenWhisk Client for JavaScript
 
-[![Build Status](https://travis-ci.org/apache/incubator-openwhisk-client-js.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-client-js)
+[![Build Status](https://travis-ci.org/apache/openwhisk-client-js.svg?branch=master)](https://travis-ci.org/apache/openwhisk-client-js)
 [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
-[![codecov](https://codecov.io/gh/apache/incubator-openwhisk-client-js/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-openwhisk-client-js)
+[![codecov](https://codecov.io/gh/apache/openwhisk-client-js/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/openwhisk-client-js)
 [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
 
-JavaScript client library for the [Apache OpenWhisk](https://github.com/apache/incubator-openwhisk) platform.
-Provides a wrapper around the [OpenWhisk APIs](https://github.com/apache/incubator-openwhisk/blob/fb001afa237476eda0c0f6494ee92702e5986538/core/controller/src/main/resources/apiv1swagger.json) (Swagger JSON).
+JavaScript client library for the [Apache OpenWhisk](https://github.com/apache/openwhisk) platform.
+Provides a wrapper around the [OpenWhisk APIs](https://github.com/apache/openwhisk/blob/fb001afa237476eda0c0f6494ee92702e5986538/core/controller/src/main/resources/apiv1swagger.json) (Swagger JSON).
 
 ## installation
 
@@ -568,7 +568,7 @@
 
 ## api gateway
 
-OpenWhisk supports a [built-in API gateway service](https://github.com/apache/incubator-openwhisk/blob/master/docs/apigateway.md) and external third-party providers.
+OpenWhisk supports a [built-in API gateway service](https://github.com/apache/openwhisk/blob/master/docs/apigateway.md) and external third-party providers.
 
 This client library defaults to using the platform service. If the `apigw_token` parameter is passed into the client constructor, the implementation will switch to the [IBM Bluemix API Gateway](https://console.ng.bluemix.net/docs/openwhisk/openwhisk_apigateway.html#openwhisk_apigateway).
 
@@ -629,7 +629,7 @@
 ow.routes.create({swagger: '{...}'})
 ```
 
-Swagger parameter must be a well-formed JSON string, containing a valid Swagger API definition, which follows the [OpenWhisk API Gateway route schema](https://github.com/apache/incubator-openwhisk-apigateway/blob/master/doc/v2/management_interface_v2.md#post-v2tenant_idapis).
+Swagger parameter must be a well-formed JSON string, containing a valid Swagger API definition, which follows the [OpenWhisk API Gateway route schema](https://github.com/apache/openwhisk-apigateway/blob/master/doc/v2/management_interface_v2.md#post-v2tenant_idapis).
 
 *No other parameters are supported when creating the route from a JSON Swagger document.*
 
diff --git a/package.json b/package.json
index a19fddd..d86f99e 100644
--- a/package.json
+++ b/package.json
@@ -23,7 +23,7 @@
   },
   "repository": {
     "type": "git",
-    "url": "git+https://github.com/apache/incubator-openwhisk-client-js"
+    "url": "git+https://github.com/apache/openwhisk-client-js"
   },
   "keywords": [
     "apache openwhisk",
@@ -35,9 +35,9 @@
   "author": "James Thomas <james@jamesthom.as>",
   "license": "Apache-2.0",
   "bugs": {
-    "url": "https://github.com/apache/incubator-openwhisk-client-js/issues"
+    "url": "https://github.com/apache/openwhisk-client-js/issues"
   },
-  "homepage": "https://github.com/apache/incubator-openwhisk-client-js#readme",
+  "homepage": "https://github.com/apache/openwhisk-client-js#readme",
   "devDependencies": {
     "@types/node": "^12.0.10",
     "@types/swagger-schema-official": "^2.0.17",
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
index 1996655..6686789 100755
--- a/tools/travis/build.sh
+++ b/tools/travis/build.sh
@@ -39,7 +39,7 @@
 cd $WHISKDIR/ansible
 
 $ANSIBLE_CMD wipe.yml
-$ANSIBLE_CMD openwhisk.yml  -e '{"openwhisk_cli":{"installation_mode":"remote","remote":{"name":"OpenWhisk_CLI","dest_name":"OpenWhisk_CLI","location":"https://github.com/apache/incubator-openwhisk-cli/releases/download/latest"}}}'
+$ANSIBLE_CMD openwhisk.yml  -e '{"openwhisk_cli":{"installation_mode":"remote","remote":{"name":"OpenWhisk_CLI","dest_name":"OpenWhisk_CLI","location":"https://github.com/apache/openwhisk-cli/releases/download/latest"}}}'
 $ANSIBLE_CMD apigateway.yml
 $ANSIBLE_CMD properties.yml # required for to run before routemgmt.yml
 $ANSIBLE_CMD routemgmt.yml
diff --git a/tools/travis/scancode.sh b/tools/travis/scancode.sh
index 5a2a84e..2ab2943 100755
--- a/tools/travis/scancode.sh
+++ b/tools/travis/scancode.sh
@@ -20,7 +20,7 @@
 # Build script for Travis-CI.
 SCRIPTDIR=$(cd $(dirname "$0") && pwd)
 ROOTDIR="$SCRIPTDIR/../.."
-UTIL_DIR="$ROOTDIR/../incubator-openwhisk-utilities"
+UTIL_DIR="$ROOTDIR/../openwhisk-utilities"
 
 # run scancode
 cd $UTIL_DIR
diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh
index 8932be6..4e9ab93 100755
--- a/tools/travis/setup.sh
+++ b/tools/travis/setup.sh
@@ -25,7 +25,7 @@
 cd $HOMEDIR
 
 # shallow clone OpenWhisk repo.
-git clone --depth 1 https://github.com/apache/incubator-openwhisk.git openwhisk
+git clone --depth 1 https://github.com/apache/openwhisk.git openwhisk
 
 cd openwhisk
 ./tools/travis/setup.sh
diff --git a/tools/travis/setupscan.sh b/tools/travis/setupscan.sh
index 7698d96..25df17e 100755
--- a/tools/travis/setupscan.sh
+++ b/tools/travis/setupscan.sh
@@ -21,4 +21,4 @@
 
 # clone OpenWhisk utilities repo. in order to run scanCode.py
 cd $HOMEDIR
-git clone https://github.com/apache/incubator-openwhisk-utilities.git
+git clone https://github.com/apache/openwhisk-utilities.git