http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/node-uuid/package.json
----------------------------------------------------------------------
diff --git a/node_modules/node-uuid/package.json 
b/node_modules/node-uuid/package.json
index 964a781..51aa36d 100644
--- a/node_modules/node-uuid/package.json
+++ b/node_modules/node-uuid/package.json
@@ -1,41 +1,7 @@
 {
-  "_args": [
-    [
-      "node-uuid@^1.4.3",
-      "D:\\Cordova\\cordova-windows"
-    ]
-  ],
-  "_from": "node-uuid@>=1.4.3 <2.0.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/node-uuid",
-  "_nodeVersion": "5.0.0",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "coolaj86"
-  },
-  "_npmVersion": "3.3.6",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "node-uuid",
-    "raw": "node-uuid@^1.4.3",
-    "rawSpec": "^1.4.3",
-    "scope": null,
-    "spec": ">=1.4.3 <2.0.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/"
-  ],
-  "_resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";,
-  "_shasum": "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f",
-  "_shrinkwrap": null,
-  "_spec": "node-uuid@^1.4.3",
-  "_where": "D:\\Cordova\\cordova-windows",
   "author": {
-    "email": "[email protected]",
-    "name": "Robert Kieffer"
+    "name": "Robert Kieffer",
+    "email": "[email protected]"
   },
   "bin": {
     "uuid": "./bin/uuid"
@@ -45,12 +11,12 @@
   },
   "contributors": [
     {
-      "email": "[email protected]",
-      "name": "AJ ONeal"
+      "name": "AJ ONeal",
+      "email": "[email protected]"
     },
     {
-      "email": "[email protected]",
-      "name": "Christoph Tavan"
+      "name": "Christoph Tavan",
+      "email": "[email protected]"
     }
   ],
   "dependencies": {},
@@ -59,11 +25,6 @@
     "nyc": "^2.2.0"
   },
   "directories": {},
-  "dist": {
-    "shasum": "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f",
-    "tarball": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
-  },
-  "gitHead": "309512573ec1c60143c257157479a20f7f1f51cd",
   "homepage": "https://github.com/broofa/node-uuid";,
   "installable": true,
   "keywords": [
@@ -81,17 +42,12 @@
   "main": "./uuid.js",
   "maintainers": [
     {
-      "email": "[email protected]",
-      "name": "broofa"
-    },
-    {
-      "email": "[email protected]",
-      "name": "coolaj86"
+      "name": "broofa",
+      "email": "[email protected]"
     }
   ],
   "name": "node-uuid",
   "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
   "repository": {
     "type": "git",
     "url": "git+https://github.com/broofa/node-uuid.git";
@@ -101,5 +57,11 @@
     "test": "node test/test.js"
   },
   "url": "http://github.com/broofa/node-uuid";,
-  "version": "1.4.7"
+  "version": "1.4.7",
+  "readme": "# node-uuid\n\nSimple, fast generation of 
[RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDS.\n\nFeatures:\n\n* 
Generate RFC4122 version 1 or version 4 UUIDs\n* Runs in node.js and all 
browsers.\n* Registered as a 
[ComponentJS](https://github.com/component/component) 
[component](https://github.com/component/component/wiki/Components) 
('broofa/node-uuid').\n* Cryptographically strong random # generation\n  * 
`crypto.randomBytes(n)` in node.js\n  * `window.crypto.getRandomValues(ta)` in 
[supported 
browsers](https://developer.mozilla.org/en-US/docs/Web/API/RandomSource/getRandomValues#Browser_Compatibility)\n*
 1.1K minified and gzip'ed  (Want something smaller?  Check this [crazy 
shit](https://gist.github.com/982883) out! )\n* [Annotated source 
code](http://broofa.github.com/node-uuid/docs/uuid.html)\n* Comes with a 
Command Line Interface for generating uuids on the command line\n\n## Getting 
Started\n\nInstall it in your browser:\n\n```html\n<script src=\"uuid.js\"></sc
 ript>\n```\n\nOr in node.js:\n\n```\nnpm install 
node-uuid\n```\n\n```javascript\nvar uuid = require('node-uuid');\n```\n\nThen 
create some ids ...\n\n```javascript\n// Generate a v1 (time-based) 
id\nuuid.v1(); // -> '6c84fb90-12c4-11e1-840d-7b25c5ee775a'\n\n// Generate a v4 
(random) id\nuuid.v4(); // -> '110ec58a-a0f2-4ac4-8393-c866d813b8d1'\n```\n\n## 
API\n\n### uuid.v1([`options` [, `buffer` [, `offset`]]])\n\nGenerate and 
return a RFC4122 v1 (timestamp-based) UUID.\n\n* `options` - (Object) Optional 
uuid state to apply. Properties may include:\n\n  * `node` - (Array) Node id as 
Array of 6 bytes (per 4.1.6). Default: Randomly generated ID.  See note 1.\n  * 
`clockseq` - (Number between 0 - 0x3fff) RFC clock sequence.  Default: An 
internally maintained clockseq is used.\n  * `msecs` - (Number | Date) Time in 
milliseconds since unix Epoch.  Default: The current time is used.\n  * `nsecs` 
- (Number between 0-9999) additional time, in 100-nanosecond units. Ignored if 
`msecs` is unspe
 cified. Default: internal uuid counter is used, as per 4.2.1.2.\n\n* `buffer` 
- (Array | Buffer) Array or buffer where UUID bytes are to be written.\n* 
`offset` - (Number) Starting index in `buffer` at which to begin 
writing.\n\nReturns `buffer`, if specified, otherwise the string form of the 
UUID\n\nNotes:\n\n1. The randomly generated node id is only guaranteed to stay 
constant for the lifetime of the current JS runtime. (Future versions of this 
module may use persistent storage mechanisms to extend this 
guarantee.)\n\nExample: Generate string UUID with fully-specified 
options\n\n```javascript\nuuid.v1({\n  node: [0x01, 0x23, 0x45, 0x67, 0x89, 
0xab],\n  clockseq: 0x1234,\n  msecs: new Date('2011-11-01').getTime(),\n  
nsecs: 5678\n});   // -> 
\"710b962e-041c-11e1-9234-0123456789ab\"\n```\n\nExample: In-place generation 
of two binary IDs\n\n```javascript\n// Generate two ids in an array\nvar arr = 
new Array(32); // -> []\nuuid.v1(null, arr, 0);   // -> [02 a2 ce 90 14 32 11 
e1 85 58 
 0b 48 8e 4f c1 15]\nuuid.v1(null, arr, 16);  // -> [02 a2 ce 90 14 32 11 e1 85 
58 0b 48 8e 4f c1 15 02 a3 1c b0 14 32 11 e1 85 58 0b 48 8e 4f c1 15]\n\n// 
Optionally use uuid.unparse() to get stringify the ids\nuuid.unparse(buffer);   
 // -> '02a2ce90-1432-11e1-8558-0b488e4fc115'\nuuid.unparse(buffer, 16) // -> 
'02a31cb0-1432-11e1-8558-0b488e4fc115'\n```\n\n### uuid.v4([`options` [, 
`buffer` [, `offset`]]])\n\nGenerate and return a RFC4122 v4 UUID.\n\n* 
`options` - (Object) Optional uuid state to apply. Properties may include:\n\n  
* `random` - (Number[16]) Array of 16 numbers (0-255) to use in place of 
randomly generated values\n  * `rng` - (Function) Random # generator to use.  
Set to one of the built-in generators - `uuid.mathRNG` (all platforms), 
`uuid.nodeRNG` (node.js only), `uuid.whatwgRNG` (WebKit only) - or a custom 
function that returns an array[16] of byte values.\n\n* `buffer` - (Array | 
Buffer) Array or buffer where UUID bytes are to be written.\n* `offset` - 
(Number) S
 tarting index in `buffer` at which to begin writing.\n\nReturns `buffer`, if 
specified, otherwise the string form of the UUID\n\nExample: Generate string 
UUID with fully-specified options\n\n```javascript\nuuid.v4({\n  random: [\n    
0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea,\n    0x71, 0xb4, 0xef, 0xe1, 
0x67, 0x1c, 0x58, 0x36\n  ]\n});\n// -> 
\"109156be-c4fb-41ea-b1b4-efe1671c5836\"\n```\n\nExample: Generate two IDs in a 
single buffer\n\n```javascript\nvar buffer = new Array(32); // (or 'new Buffer' 
in node.js)\nuuid.v4(null, buffer, 0);\nuuid.v4(null, buffer, 16);\n```\n\n### 
uuid.parse(id[, buffer[, offset]])\n### uuid.unparse(buffer[, offset])\n\nParse 
and unparse UUIDs\n\n  * `id` - (String) UUID(-like) string\n  * `buffer` - 
(Array | Buffer) Array or buffer where UUID bytes are to be written. Default: A 
new Array or Buffer is used\n  * `offset` - (Number) Starting index in `buffer` 
at which to begin writing. Default: 0\n\nExample parsing and unparsing a UUID 
string\n\n```
 javascript\nvar bytes = uuid.parse('797ff043-11eb-11e1-80d6-510998755d10'); // 
-> <Buffer 79 7f f0 43 11 eb 11 e1 80 d6 51 09 98 75 5d 10>\nvar string = 
uuid.unparse(bytes); // -> '797ff043-11eb-11e1-80d6-510998755d10'\n```\n\n### 
uuid.noConflict()\n\n(Browsers only) Set `uuid` property back to it's previous 
value.\n\nReturns the node-uuid object.\n\nExample:\n\n```javascript\nvar 
myUuid = uuid.noConflict();\nmyUuid.v1(); // -> 
'6c84fb90-12c4-11e1-840d-7b25c5ee775a'\n```\n\n## Deprecated APIs\n\nSupport 
for the following v1.2 APIs is available in v1.3, but is deprecated and will be 
removed in the next major version.\n\n### uuid([format [, buffer [, 
offset]]])\n\nuuid() has become uuid.v4(), and the `format` argument is now 
implicit in the `buffer` argument. (i.e. if you specify a buffer, the format is 
assumed to be binary).\n\n### uuid.BufferClass\n\nThe class of container 
created when generating binary uuid data if no buffer argument is specified.  
This is expected to go away, with
  no replacement API.\n\n## Command Line Interface\n\nTo use the executable, 
it's probably best to install this library globally.\n\n`npm install -g 
node-uuid`\n\nUsage:\n\n```\nUSAGE: uuid [version] 
[options]\n\n\noptions:\n\n--help                     Display this message and 
exit\n```\n\n`version` must be an RFC4122 version that is supported by this 
library, which is currently version 1 and version 4 (denoted by \"v1\" and 
\"v4\", respectively). `version` defaults to version 4 when not 
supplied.\n\n### Examples\n\n```\n> 
uuid\n3a91f950-dec8-4688-ba14-5b7bbfc7a563\n```\n\n```\n> uuid 
v1\n9d0b43e0-7696-11e3-964b-250efa37a98e\n```\n\n```\n> uuid 
v4\n6790ac7c-24ac-4f98-8464-42f6d98a53ae\n```\n\n## Testing\n\nIn 
node.js\n\n```\nnpm test\n```\n\nIn Browser\n\n```\nopen 
test/test.html\n```\n\n### Benchmarking\n\nRequires node.js\n\n```\nnpm install 
uuid uuid-js\nnode benchmark/benchmark.js\n```\n\nFor a more complete 
discussion of node-uuid performance, please see the `benchmark/README.m
 d` file, and the [benchmark 
wiki](https://github.com/broofa/node-uuid/wiki/Benchmark)\n\nFor browser 
performance [checkout the JSPerf 
tests](http://jsperf.com/node-uuid-performance).\n\n## Release notes\n\n### 
1.4.6\n\n* Properly detect node crypto and whatwg crypto\n* Workaround 
phantomjs/browserify bug\n* Explicit check for `window` rather implicit 
this-global\n* Issue warning if Math.random() is being used\n* \"use 
strict\";\n* A few jshint / stylistic updates (=== and such)\n\n### 1.4.0\n\n* 
Improved module context detection\n* Removed public RNG functions\n\n### 
1.3.2\n\n* Improve tests and handling of v1() options (Issue #24)\n* Expose RNG 
option to allow for perf testing with different generators\n\n### 1.3.0\n\n* 
Support for version 1 ids, thanks to [@ctavan](https://github.com/ctavan)!\n* 
Support for node.js crypto API\n* De-emphasizing performance in favor of a) 
cryptographic quality PRNGs where available and b) more manageable code\n",
+  "readmeFilename": "README.md",
+  "_id": "[email protected]",
+  "_shasum": "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f",
+  "_resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";,
+  "_from": "node-uuid@>=1.4.3 <2.0.0"
 }

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/.npmignore
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/.npmignore 
b/node_modules/nopt/node_modules/abbrev/.npmignore
new file mode 100644
index 0000000..9d6cd2f
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/.npmignore
@@ -0,0 +1,4 @@
+.nyc_output
+nyc_output
+node_modules
+coverage

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/.travis.yml
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/.travis.yml 
b/node_modules/nopt/node_modules/abbrev/.travis.yml
new file mode 100644
index 0000000..991d04b
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/.travis.yml
@@ -0,0 +1,5 @@
+language: node_js
+node_js:
+  - '0.10'
+  - '0.12'
+  - 'iojs'

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md 
b/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md
new file mode 100644
index 0000000..2f30261
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md
@@ -0,0 +1,3 @@
+ To get started, <a
+ href="http://www.clahub.com/agreements/isaacs/abbrev-js";>sign the
+ Contributor License Agreement</a>.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/LICENSE
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/LICENSE 
b/node_modules/nopt/node_modules/abbrev/LICENSE
new file mode 100644
index 0000000..19129e3
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/LICENSE
@@ -0,0 +1,15 @@
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/README.md
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/README.md 
b/node_modules/nopt/node_modules/abbrev/README.md
new file mode 100644
index 0000000..99746fe
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/README.md
@@ -0,0 +1,23 @@
+# abbrev-js
+
+Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).
+
+Usage:
+
+    var abbrev = require("abbrev");
+    abbrev("foo", "fool", "folding", "flop");
+    
+    // returns:
+    { fl: 'flop'
+    , flo: 'flop'
+    , flop: 'flop'
+    , fol: 'folding'
+    , fold: 'folding'
+    , foldi: 'folding'
+    , foldin: 'folding'
+    , folding: 'folding'
+    , foo: 'foo'
+    , fool: 'fool'
+    }
+
+This is handy for command-line scripts, or other cases where you want to be 
able to accept shorthands.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/abbrev.js
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/abbrev.js 
b/node_modules/nopt/node_modules/abbrev/abbrev.js
new file mode 100644
index 0000000..69cfeac
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/abbrev.js
@@ -0,0 +1,62 @@
+
+module.exports = exports = abbrev.abbrev = abbrev
+
+abbrev.monkeyPatch = monkeyPatch
+
+function monkeyPatch () {
+  Object.defineProperty(Array.prototype, 'abbrev', {
+    value: function () { return abbrev(this) },
+    enumerable: false, configurable: true, writable: true
+  })
+
+  Object.defineProperty(Object.prototype, 'abbrev', {
+    value: function () { return abbrev(Object.keys(this)) },
+    enumerable: false, configurable: true, writable: true
+  })
+}
+
+function abbrev (list) {
+  if (arguments.length !== 1 || !Array.isArray(list)) {
+    list = Array.prototype.slice.call(arguments, 0)
+  }
+  for (var i = 0, l = list.length, args = [] ; i < l ; i ++) {
+    args[i] = typeof list[i] === "string" ? list[i] : String(list[i])
+  }
+
+  // sort them lexicographically, so that they're next to their nearest kin
+  args = args.sort(lexSort)
+
+  // walk through each, seeing how much it has in common with the next and 
previous
+  var abbrevs = {}
+    , prev = ""
+  for (var i = 0, l = args.length ; i < l ; i ++) {
+    var current = args[i]
+      , next = args[i + 1] || ""
+      , nextMatches = true
+      , prevMatches = true
+    if (current === next) continue
+    for (var j = 0, cl = current.length ; j < cl ; j ++) {
+      var curChar = current.charAt(j)
+      nextMatches = nextMatches && curChar === next.charAt(j)
+      prevMatches = prevMatches && curChar === prev.charAt(j)
+      if (!nextMatches && !prevMatches) {
+        j ++
+        break
+      }
+    }
+    prev = current
+    if (j === cl) {
+      abbrevs[current] = current
+      continue
+    }
+    for (var a = current.substr(0, j) ; j <= cl ; j ++) {
+      abbrevs[a] = current
+      a += current.charAt(j)
+    }
+  }
+  return abbrevs
+}
+
+function lexSort (a, b) {
+  return a === b ? 0 : a > b ? 1 : -1
+}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/package.json
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/package.json 
b/node_modules/nopt/node_modules/abbrev/package.json
new file mode 100644
index 0000000..d283d50
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/package.json
@@ -0,0 +1,48 @@
+{
+  "name": "abbrev",
+  "version": "1.0.7",
+  "description": "Like ruby's abbrev module, but in js",
+  "author": {
+    "name": "Isaac Z. Schlueter",
+    "email": "[email protected]"
+  },
+  "main": "abbrev.js",
+  "scripts": {
+    "test": "tap test.js --cov"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+ssh://[email protected]/isaacs/abbrev-js.git"
+  },
+  "license": "ISC",
+  "devDependencies": {
+    "tap": "^1.2.0"
+  },
+  "gitHead": "821d09ce7da33627f91bbd8ed631497ed6f760c2",
+  "bugs": {
+    "url": "https://github.com/isaacs/abbrev-js/issues";
+  },
+  "homepage": "https://github.com/isaacs/abbrev-js#readme";,
+  "_id": "[email protected]",
+  "_shasum": "5b6035b2ee9d4fb5cf859f08a9be81b208491843",
+  "_from": "abbrev@>=1.0.0 <2.0.0",
+  "_npmVersion": "2.10.1",
+  "_nodeVersion": "2.0.1",
+  "_npmUser": {
+    "name": "isaacs",
+    "email": "[email protected]"
+  },
+  "dist": {
+    "shasum": "5b6035b2ee9d4fb5cf859f08a9be81b208491843",
+    "tarball": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz";
+  },
+  "maintainers": [
+    {
+      "name": "isaacs",
+      "email": "[email protected]"
+    }
+  ],
+  "directories": {},
+  "_resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz";,
+  "readme": "ERROR: No README data found!"
+}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/node_modules/abbrev/test.js
----------------------------------------------------------------------
diff --git a/node_modules/nopt/node_modules/abbrev/test.js 
b/node_modules/nopt/node_modules/abbrev/test.js
new file mode 100644
index 0000000..eb30e42
--- /dev/null
+++ b/node_modules/nopt/node_modules/abbrev/test.js
@@ -0,0 +1,47 @@
+var abbrev = require('./abbrev.js')
+var assert = require("assert")
+var util = require("util")
+
+console.log("TAP version 13")
+var count = 0
+
+function test (list, expect) {
+  count++
+  var actual = abbrev(list)
+  assert.deepEqual(actual, expect,
+    "abbrev("+util.inspect(list)+") === " + util.inspect(expect) + "\n"+
+    "actual: "+util.inspect(actual))
+  actual = abbrev.apply(exports, list)
+  assert.deepEqual(abbrev.apply(exports, list), expect,
+    "abbrev("+list.map(JSON.stringify).join(",")+") === " + 
util.inspect(expect) + "\n"+
+    "actual: "+util.inspect(actual))
+  console.log('ok - ' + list.join(' '))
+}
+
+test([ "ruby", "ruby", "rules", "rules", "rules" ],
+{ rub: 'ruby'
+, ruby: 'ruby'
+, rul: 'rules'
+, rule: 'rules'
+, rules: 'rules'
+})
+test(["fool", "foom", "pool", "pope"],
+{ fool: 'fool'
+, foom: 'foom'
+, poo: 'pool'
+, pool: 'pool'
+, pop: 'pope'
+, pope: 'pope'
+})
+test(["a", "ab", "abc", "abcd", "abcde", "acde"],
+{ a: 'a'
+, ab: 'ab'
+, abc: 'abc'
+, abcd: 'abcd'
+, abcde: 'abcde'
+, ac: 'acde'
+, acd: 'acde'
+, acde: 'acde'
+})
+
+console.log("1..%d", count)

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/nopt/package.json
----------------------------------------------------------------------
diff --git a/node_modules/nopt/package.json b/node_modules/nopt/package.json
index 8e5a28e..9af9c80 100644
--- a/node_modules/nopt/package.json
+++ b/node_modules/nopt/package.json
@@ -1,88 +1,63 @@
 {
-  "_args": [
-    [
-      "nopt@^3.0.4",
-      "D:\\Cordova\\cordova-windows"
-    ]
-  ],
-  "_from": "nopt@>=3.0.4 <4.0.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/nopt",
-  "_nodeVersion": "4.2.1",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "othiym23"
-  },
-  "_npmVersion": "2.14.10",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "nopt",
-    "raw": "nopt@^3.0.4",
-    "rawSpec": "^3.0.4",
-    "scope": null,
-    "spec": ">=3.0.4 <4.0.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/"
-  ],
-  "_resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";,
-  "_shasum": "c6465dbf08abcd4db359317f79ac68a646b28ff9",
-  "_shrinkwrap": null,
-  "_spec": "nopt@^3.0.4",
-  "_where": "D:\\Cordova\\cordova-windows",
+  "name": "nopt",
+  "version": "3.0.6",
+  "description": "Option parsing for Node, supporting types, shorthands, etc. 
Used by npm.",
   "author": {
-    "email": "[email protected]",
     "name": "Isaac Z. Schlueter",
+    "email": "[email protected]",
     "url": "http://blog.izs.me/";
   },
+  "main": "lib/nopt.js",
+  "scripts": {
+    "test": "tap test/*.js"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/npm/nopt.git";
+  },
   "bin": {
     "nopt": "./bin/nopt.js"
   },
-  "bugs": {
-    "url": "https://github.com/npm/nopt/issues";
-  },
+  "license": "ISC",
   "dependencies": {
     "abbrev": "1"
   },
-  "description": "Option parsing for Node, supporting types, shorthands, etc. 
Used by npm.",
   "devDependencies": {
     "tap": "^1.2.0"
   },
-  "directories": {},
+  "gitHead": "10a750c9bb99c1950160353459e733ac2aa18cb6",
+  "bugs": {
+    "url": "https://github.com/npm/nopt/issues";
+  },
+  "homepage": "https://github.com/npm/nopt#readme";,
+  "_id": "[email protected]",
+  "_shasum": "c6465dbf08abcd4db359317f79ac68a646b28ff9",
+  "_from": "nopt@>=3.0.4 <4.0.0",
+  "_npmVersion": "2.14.10",
+  "_nodeVersion": "4.2.1",
+  "_npmUser": {
+    "name": "othiym23",
+    "email": "[email protected]"
+  },
   "dist": {
     "shasum": "c6465dbf08abcd4db359317f79ac68a646b28ff9",
     "tarball": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
   },
-  "gitHead": "10a750c9bb99c1950160353459e733ac2aa18cb6",
-  "homepage": "https://github.com/npm/nopt#readme";,
-  "license": "ISC",
-  "main": "lib/nopt.js",
   "maintainers": [
     {
-      "email": "[email protected]",
-      "name": "isaacs"
+      "name": "isaacs",
+      "email": "[email protected]"
     },
     {
-      "email": "[email protected]",
-      "name": "othiym23"
+      "name": "othiym23",
+      "email": "[email protected]"
     },
     {
-      "email": "[email protected]",
-      "name": "zkat"
+      "name": "zkat",
+      "email": "[email protected]"
     }
   ],
-  "name": "nopt",
-  "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/npm/nopt.git";
-  },
-  "scripts": {
-    "test": "tap test/*.js"
-  },
-  "version": "3.0.6"
+  "directories": {},
+  "_resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";,
+  "readme": "ERROR: No README data found!"
 }

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/once/LICENSE
----------------------------------------------------------------------
diff --git a/node_modules/once/LICENSE b/node_modules/once/LICENSE
deleted file mode 100644
index 19129e3..0000000
--- a/node_modules/once/LICENSE
+++ /dev/null
@@ -1,15 +0,0 @@
-The ISC License
-
-Copyright (c) Isaac Z. Schlueter and Contributors
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
-IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/once/README.md
----------------------------------------------------------------------
diff --git a/node_modules/once/README.md b/node_modules/once/README.md
deleted file mode 100644
index a2981ea..0000000
--- a/node_modules/once/README.md
+++ /dev/null
@@ -1,51 +0,0 @@
-# once
-
-Only call a function once.
-
-## usage
-
-```javascript
-var once = require('once')
-
-function load (file, cb) {
-  cb = once(cb)
-  loader.load('file')
-  loader.once('load', cb)
-  loader.once('error', cb)
-}
-```
-
-Or add to the Function.prototype in a responsible way:
-
-```javascript
-// only has to be done once
-require('once').proto()
-
-function load (file, cb) {
-  cb = cb.once()
-  loader.load('file')
-  loader.once('load', cb)
-  loader.once('error', cb)
-}
-```
-
-Ironically, the prototype feature makes this module twice as
-complicated as necessary.
-
-To check whether you function has been called, use `fn.called`. Once the
-function is called for the first time the return value of the original
-function is saved in `fn.value` and subsequent calls will continue to
-return this value.
-
-```javascript
-var once = require('once')
-
-function load (cb) {
-  cb = once(cb)
-  var stream = createStream()
-  stream.once('data', cb)
-  stream.once('end', function () {
-    if (!cb.called) cb(new Error('not found'))
-  })
-}
-```

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/once/once.js
----------------------------------------------------------------------
diff --git a/node_modules/once/once.js b/node_modules/once/once.js
deleted file mode 100644
index 2e1e721..0000000
--- a/node_modules/once/once.js
+++ /dev/null
@@ -1,21 +0,0 @@
-var wrappy = require('wrappy')
-module.exports = wrappy(once)
-
-once.proto = once(function () {
-  Object.defineProperty(Function.prototype, 'once', {
-    value: function () {
-      return once(this)
-    },
-    configurable: true
-  })
-})
-
-function once (fn) {
-  var f = function () {
-    if (f.called) return f.value
-    f.called = true
-    return f.value = fn.apply(this, arguments)
-  }
-  f.called = false
-  return f
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/once/package.json
----------------------------------------------------------------------
diff --git a/node_modules/once/package.json b/node_modules/once/package.json
deleted file mode 100644
index 4e71eb6..0000000
--- a/node_modules/once/package.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-  "_args": [
-    [
-      "once@^1.3.0",
-      "D:\\Cordova\\cordova-windows\\node_modules\\glob"
-    ]
-  ],
-  "_from": "once@>=1.3.0 <2.0.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/once",
-  "_nodeVersion": "4.0.0",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "isaacs"
-  },
-  "_npmVersion": "3.3.2",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "once",
-    "raw": "once@^1.3.0",
-    "rawSpec": "^1.3.0",
-    "scope": null,
-    "spec": ">=1.3.0 <2.0.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/glob",
-    "/inflight"
-  ],
-  "_resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz";,
-  "_shasum": "b2e261557ce4c314ec8304f3fa82663e4297ca20",
-  "_shrinkwrap": null,
-  "_spec": "once@^1.3.0",
-  "_where": "D:\\Cordova\\cordova-windows\\node_modules\\glob",
-  "author": {
-    "email": "[email protected]",
-    "name": "Isaac Z. Schlueter",
-    "url": "http://blog.izs.me/";
-  },
-  "bugs": {
-    "url": "https://github.com/isaacs/once/issues";
-  },
-  "dependencies": {
-    "wrappy": "1"
-  },
-  "description": "Run a function exactly one time",
-  "devDependencies": {
-    "tap": "^1.2.0"
-  },
-  "directories": {
-    "test": "test"
-  },
-  "dist": {
-    "shasum": "b2e261557ce4c314ec8304f3fa82663e4297ca20",
-    "tarball": "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
-  },
-  "files": [
-    "once.js"
-  ],
-  "gitHead": "2ad558657e17fafd24803217ba854762842e4178",
-  "homepage": "https://github.com/isaacs/once#readme";,
-  "keywords": [
-    "once",
-    "function",
-    "one",
-    "single"
-  ],
-  "license": "ISC",
-  "main": "once.js",
-  "maintainers": [
-    {
-      "email": "[email protected]",
-      "name": "isaacs"
-    }
-  ],
-  "name": "once",
-  "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
-  "repository": {
-    "type": "git",
-    "url": "git://github.com/isaacs/once.git"
-  },
-  "scripts": {
-    "test": "tap test/*.js"
-  },
-  "version": "1.3.3"
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-homedir/index.js
----------------------------------------------------------------------
diff --git a/node_modules/os-homedir/index.js b/node_modules/os-homedir/index.js
deleted file mode 100644
index 3306616..0000000
--- a/node_modules/os-homedir/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-'use strict';
-var os = require('os');
-
-function homedir() {
-       var env = process.env;
-       var home = env.HOME;
-       var user = env.LOGNAME || env.USER || env.LNAME || env.USERNAME;
-
-       if (process.platform === 'win32') {
-               return env.USERPROFILE || env.HOMEDRIVE + env.HOMEPATH || home 
|| null;
-       }
-
-       if (process.platform === 'darwin') {
-               return home || (user ? '/Users/' + user : null);
-       }
-
-       if (process.platform === 'linux') {
-               return home || (process.getuid() === 0 ? '/root' : (user ? 
'/home/' + user : null));
-       }
-
-       return home || null;
-}
-
-module.exports = typeof os.homedir === 'function' ? os.homedir : homedir;

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-homedir/license
----------------------------------------------------------------------
diff --git a/node_modules/os-homedir/license b/node_modules/os-homedir/license
deleted file mode 100644
index 654d0bf..0000000
--- a/node_modules/os-homedir/license
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-homedir/package.json
----------------------------------------------------------------------
diff --git a/node_modules/os-homedir/package.json 
b/node_modules/os-homedir/package.json
deleted file mode 100644
index 937bc6f..0000000
--- a/node_modules/os-homedir/package.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
-  "_args": [
-    [
-      "os-homedir@^1.0.0",
-      "D:\\Cordova\\cordova-windows\\node_modules\\osenv"
-    ]
-  ],
-  "_from": "os-homedir@>=1.0.0 <2.0.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/os-homedir",
-  "_nodeVersion": "0.12.5",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "sindresorhus"
-  },
-  "_npmVersion": "2.11.2",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "os-homedir",
-    "raw": "os-homedir@^1.0.0",
-    "rawSpec": "^1.0.0",
-    "scope": null,
-    "spec": ">=1.0.0 <2.0.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/osenv"
-  ],
-  "_resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz";,
-  "_shasum": "0d62bdf44b916fd3bbdcf2cab191948fb094f007",
-  "_shrinkwrap": null,
-  "_spec": "os-homedir@^1.0.0",
-  "_where": "D:\\Cordova\\cordova-windows\\node_modules\\osenv",
-  "author": {
-    "email": "[email protected]",
-    "name": "Sindre Sorhus",
-    "url": "sindresorhus.com"
-  },
-  "bugs": {
-    "url": "https://github.com/sindresorhus/os-homedir/issues";
-  },
-  "dependencies": {},
-  "description": "io.js 2.3.0 os.homedir() ponyfill",
-  "devDependencies": {
-    "ava": "0.0.4",
-    "path-exists": "^1.0.0"
-  },
-  "directories": {},
-  "dist": {
-    "shasum": "0d62bdf44b916fd3bbdcf2cab191948fb094f007",
-    "tarball": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz";
-  },
-  "engines": {
-    "node": ">=0.10.0"
-  },
-  "files": [
-    "index.js"
-  ],
-  "gitHead": "13ff83fbd13ebe286a6092286b2c634ab4534c5f",
-  "homepage": "https://github.com/sindresorhus/os-homedir";,
-  "keywords": [
-    "built-in",
-    "core",
-    "ponyfill",
-    "polyfill",
-    "shim",
-    "os",
-    "homedir",
-    "home",
-    "dir",
-    "directory",
-    "folder",
-    "user",
-    "path"
-  ],
-  "license": "MIT",
-  "maintainers": [
-    {
-      "email": "[email protected]",
-      "name": "sindresorhus"
-    }
-  ],
-  "name": "os-homedir",
-  "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/sindresorhus/os-homedir.git";
-  },
-  "scripts": {
-    "test": "node test.js"
-  },
-  "version": "1.0.1"
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-homedir/readme.md
----------------------------------------------------------------------
diff --git a/node_modules/os-homedir/readme.md 
b/node_modules/os-homedir/readme.md
deleted file mode 100644
index 4851f10..0000000
--- a/node_modules/os-homedir/readme.md
+++ /dev/null
@@ -1,33 +0,0 @@
-# os-homedir [![Build 
Status](https://travis-ci.org/sindresorhus/os-homedir.svg?branch=master)](https://travis-ci.org/sindresorhus/os-homedir)
-
-> io.js 2.3.0 [`os.homedir()`](https://iojs.org/api/os.html#os_os_homedir) 
ponyfill
-
-> Ponyfill: A polyfill that doesn't overwrite the native method
-
-
-## Install
-
-```
-$ npm install --save os-homedir
-```
-
-
-## Usage
-
-```js
-var osHomedir = require('os-homedir');
-
-console.log(osHomedir());
-//=> /Users/sindresorhus
-```
-
-
-## Related
-
-- [user-home](https://github.com/sindresorhus/user-home) - Same as this module 
but caches the result
-- [home-or-tmp](https://github.com/sindresorhus/home-or-tmp) - Get the user 
home directory with fallback to the system temp directory
-
-
-## License
-
-MIT © [Sindre Sorhus](http://sindresorhus.com)

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-tmpdir/index.js
----------------------------------------------------------------------
diff --git a/node_modules/os-tmpdir/index.js b/node_modules/os-tmpdir/index.js
deleted file mode 100644
index 52d90bf..0000000
--- a/node_modules/os-tmpdir/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-'use strict';
-var isWindows = process.platform === 'win32';
-var trailingSlashRe = isWindows ? /[^:]\\$/ : /.\/$/;
-
-// 
https://github.com/nodejs/io.js/blob/3e7a14381497a3b73dda68d05b5130563cdab420/lib/os.js#L25-L43
-module.exports = function () {
-       var path;
-
-       if (isWindows) {
-               path = process.env.TEMP ||
-                       process.env.TMP ||
-                       (process.env.SystemRoot || process.env.windir) + 
'\\temp';
-       } else {
-               path = process.env.TMPDIR ||
-                       process.env.TMP ||
-                       process.env.TEMP ||
-                       '/tmp';
-       }
-
-       if (trailingSlashRe.test(path)) {
-               path = path.slice(0, -1);
-       }
-
-       return path;
-};

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-tmpdir/license
----------------------------------------------------------------------
diff --git a/node_modules/os-tmpdir/license b/node_modules/os-tmpdir/license
deleted file mode 100644
index 654d0bf..0000000
--- a/node_modules/os-tmpdir/license
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-tmpdir/package.json
----------------------------------------------------------------------
diff --git a/node_modules/os-tmpdir/package.json 
b/node_modules/os-tmpdir/package.json
deleted file mode 100644
index bef95ad..0000000
--- a/node_modules/os-tmpdir/package.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
-  "_args": [
-    [
-      "os-tmpdir@^1.0.0",
-      "D:\\Cordova\\cordova-windows\\node_modules\\osenv"
-    ]
-  ],
-  "_from": "os-tmpdir@>=1.0.0 <2.0.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/os-tmpdir",
-  "_nodeVersion": "0.12.3",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "sindresorhus"
-  },
-  "_npmVersion": "2.9.1",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "os-tmpdir",
-    "raw": "os-tmpdir@^1.0.0",
-    "rawSpec": "^1.0.0",
-    "scope": null,
-    "spec": ">=1.0.0 <2.0.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/osenv"
-  ],
-  "_resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz";,
-  "_shasum": "e9b423a1edaf479882562e92ed71d7743a071b6e",
-  "_shrinkwrap": null,
-  "_spec": "os-tmpdir@^1.0.0",
-  "_where": "D:\\Cordova\\cordova-windows\\node_modules\\osenv",
-  "author": {
-    "email": "[email protected]",
-    "name": "Sindre Sorhus",
-    "url": "sindresorhus.com"
-  },
-  "bugs": {
-    "url": "https://github.com/sindresorhus/os-tmpdir/issues";
-  },
-  "dependencies": {},
-  "description": "Node.js os.tmpdir() ponyfill",
-  "devDependencies": {
-    "ava": "0.0.4"
-  },
-  "directories": {},
-  "dist": {
-    "shasum": "e9b423a1edaf479882562e92ed71d7743a071b6e",
-    "tarball": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz";
-  },
-  "engines": {
-    "node": ">=0.10.0"
-  },
-  "files": [
-    "index.js"
-  ],
-  "gitHead": "5c5d355f81378980db629d60128ad03e02b1c1e5",
-  "homepage": "https://github.com/sindresorhus/os-tmpdir";,
-  "keywords": [
-    "built-in",
-    "core",
-    "ponyfill",
-    "polyfill",
-    "shim",
-    "os",
-    "tmpdir",
-    "tempdir",
-    "tmp",
-    "temp",
-    "dir",
-    "directory",
-    "env",
-    "environment"
-  ],
-  "license": "MIT",
-  "maintainers": [
-    {
-      "email": "[email protected]",
-      "name": "sindresorhus"
-    }
-  ],
-  "name": "os-tmpdir",
-  "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/sindresorhus/os-tmpdir.git";
-  },
-  "scripts": {
-    "test": "node test.js"
-  },
-  "version": "1.0.1"
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/os-tmpdir/readme.md
----------------------------------------------------------------------
diff --git a/node_modules/os-tmpdir/readme.md b/node_modules/os-tmpdir/readme.md
deleted file mode 100644
index 54d4c6e..0000000
--- a/node_modules/os-tmpdir/readme.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# os-tmpdir [![Build 
Status](https://travis-ci.org/sindresorhus/os-tmpdir.svg?branch=master)](https://travis-ci.org/sindresorhus/os-tmpdir)
-
-> Node.js [`os.tmpdir()`](https://nodejs.org/api/os.html#os_os_tmpdir) ponyfill
-
-> Ponyfill: A polyfill that doesn't overwrite the native method
-
-Use this instead of `require('os').tmpdir()` to get a consistent behaviour on 
different Node.js versions (even 0.8).
-
-*This is actually taken from io.js 2.0.2 as it contains some fixes that 
haven't bubbled up to Node.js yet.*
-
-
-## Install
-
-```
-$ npm install --save os-tmpdir
-```
-
-
-## Usage
-
-```js
-var osTmpdir = require('os-tmpdir');
-
-osTmpdir();
-//=> /var/folders/m3/5574nnhn0yj488ccryqr7tc80000gn/T
-```
-
-
-## API
-
-See the [`os.tmpdir()` docs](https://nodejs.org/api/os.html#os_os_tmpdir).
-
-
-## License
-
-MIT © [Sindre Sorhus](http://sindresorhus.com)

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/.npmignore
----------------------------------------------------------------------
diff --git a/node_modules/osenv/.npmignore b/node_modules/osenv/.npmignore
deleted file mode 100644
index 8c23dee..0000000
--- a/node_modules/osenv/.npmignore
+++ /dev/null
@@ -1,13 +0,0 @@
-*.swp
-.*.swp
-
-.DS_Store
-*~
-.project
-.settings
-npm-debug.log
-coverage.html
-.idea
-lib-cov
-
-node_modules

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/.travis.yml
----------------------------------------------------------------------
diff --git a/node_modules/osenv/.travis.yml b/node_modules/osenv/.travis.yml
deleted file mode 100644
index 99f2bbf..0000000
--- a/node_modules/osenv/.travis.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-language: node_js
-language: node_js
-node_js:
-  - '0.8'
-  - '0.10'
-  - '0.12'
-  - 'iojs'
-before_install:
-  - npm install -g npm@latest

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/LICENSE
----------------------------------------------------------------------
diff --git a/node_modules/osenv/LICENSE b/node_modules/osenv/LICENSE
deleted file mode 100644
index 19129e3..0000000
--- a/node_modules/osenv/LICENSE
+++ /dev/null
@@ -1,15 +0,0 @@
-The ISC License
-
-Copyright (c) Isaac Z. Schlueter and Contributors
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
-IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/README.md
----------------------------------------------------------------------
diff --git a/node_modules/osenv/README.md b/node_modules/osenv/README.md
deleted file mode 100644
index 08fd900..0000000
--- a/node_modules/osenv/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# osenv
-
-Look up environment settings specific to different operating systems.
-
-## Usage
-
-```javascript
-var osenv = require('osenv')
-var path = osenv.path()
-var user = osenv.user()
-// etc.
-
-// Some things are not reliably in the env, and have a fallback command:
-var h = osenv.hostname(function (er, hostname) {
-  h = hostname
-})
-// This will still cause it to be memoized, so calling osenv.hostname()
-// is now an immediate operation.
-
-// You can always send a cb, which will get called in the nextTick
-// if it's been memoized, or wait for the fallback data if it wasn't
-// found in the environment.
-osenv.hostname(function (er, hostname) {
-  if (er) console.error('error looking up hostname')
-  else console.log('this machine calls itself %s', hostname)
-})
-```
-
-## osenv.hostname()
-
-The machine name.  Calls `hostname` if not found.
-
-## osenv.user()
-
-The currently logged-in user.  Calls `whoami` if not found.
-
-## osenv.prompt()
-
-Either PS1 on unix, or PROMPT on Windows.
-
-## osenv.tmpdir()
-
-The place where temporary files should be created.
-
-## osenv.home()
-
-No place like it.
-
-## osenv.path()
-
-An array of the places that the operating system will search for
-executables.
-
-## osenv.editor() 
-
-Return the executable name of the editor program.  This uses the EDITOR
-and VISUAL environment variables, and falls back to `vi` on Unix, or
-`notepad.exe` on Windows.
-
-## osenv.shell()
-
-The SHELL on Unix, which Windows calls the ComSpec.  Defaults to 'bash'
-or 'cmd'.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/osenv.js
----------------------------------------------------------------------
diff --git a/node_modules/osenv/osenv.js b/node_modules/osenv/osenv.js
deleted file mode 100644
index 702a95b..0000000
--- a/node_modules/osenv/osenv.js
+++ /dev/null
@@ -1,72 +0,0 @@
-var isWindows = process.platform === 'win32'
-var path = require('path')
-var exec = require('child_process').exec
-var osTmpdir = require('os-tmpdir')
-var osHomedir = require('os-homedir')
-
-// looking up envs is a bit costly.
-// Also, sometimes we want to have a fallback
-// Pass in a callback to wait for the fallback on failures
-// After the first lookup, always returns the same thing.
-function memo (key, lookup, fallback) {
-  var fell = false
-  var falling = false
-  exports[key] = function (cb) {
-    var val = lookup()
-    if (!val && !fell && !falling && fallback) {
-      fell = true
-      falling = true
-      exec(fallback, function (er, output, stderr) {
-        falling = false
-        if (er) return // oh well, we tried
-        val = output.trim()
-      })
-    }
-    exports[key] = function (cb) {
-      if (cb) process.nextTick(cb.bind(null, null, val))
-      return val
-    }
-    if (cb && !falling) process.nextTick(cb.bind(null, null, val))
-    return val
-  }
-}
-
-memo('user', function () {
-  return ( isWindows
-         ? process.env.USERDOMAIN + '\\' + process.env.USERNAME
-         : process.env.USER
-         )
-}, 'whoami')
-
-memo('prompt', function () {
-  return isWindows ? process.env.PROMPT : process.env.PS1
-})
-
-memo('hostname', function () {
-  return isWindows ? process.env.COMPUTERNAME : process.env.HOSTNAME
-}, 'hostname')
-
-memo('tmpdir', function () {
-  return osTmpdir()
-})
-
-memo('home', function () {
-  return osHomedir()
-})
-
-memo('path', function () {
-  return (process.env.PATH ||
-          process.env.Path ||
-          process.env.path).split(isWindows ? ';' : ':')
-})
-
-memo('editor', function () {
-  return process.env.EDITOR ||
-         process.env.VISUAL ||
-         (isWindows ? 'notepad.exe' : 'vi')
-})
-
-memo('shell', function () {
-  return isWindows ? process.env.ComSpec || 'cmd'
-         : process.env.SHELL || 'bash'
-})

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/package.json
----------------------------------------------------------------------
diff --git a/node_modules/osenv/package.json b/node_modules/osenv/package.json
deleted file mode 100644
index de0c631..0000000
--- a/node_modules/osenv/package.json
+++ /dev/null
@@ -1,101 +0,0 @@
-{
-  "_args": [
-    [
-      "osenv@^0.1.3",
-      "D:\\Cordova\\cordova-windows\\node_modules\\cordova-common"
-    ]
-  ],
-  "_from": "osenv@>=0.1.3 <0.2.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/osenv",
-  "_nodeVersion": "2.2.1",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "isaacs"
-  },
-  "_npmVersion": "3.0.0",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "osenv",
-    "raw": "osenv@^0.1.3",
-    "rawSpec": "^0.1.3",
-    "scope": null,
-    "spec": ">=0.1.3 <0.2.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/cordova-common"
-  ],
-  "_resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz";,
-  "_shasum": "83cf05c6d6458fc4d5ac6362ea325d92f2754217",
-  "_shrinkwrap": null,
-  "_spec": "osenv@^0.1.3",
-  "_where": "D:\\Cordova\\cordova-windows\\node_modules\\cordova-common",
-  "author": {
-    "email": "[email protected]",
-    "name": "Isaac Z. Schlueter",
-    "url": "http://blog.izs.me/";
-  },
-  "bugs": {
-    "url": "https://github.com/npm/osenv/issues";
-  },
-  "dependencies": {
-    "os-homedir": "^1.0.0",
-    "os-tmpdir": "^1.0.0"
-  },
-  "description": "Look up environment settings specific to different operating 
systems",
-  "devDependencies": {
-    "tap": "^1.2.0"
-  },
-  "directories": {
-    "test": "test"
-  },
-  "dist": {
-    "shasum": "83cf05c6d6458fc4d5ac6362ea325d92f2754217",
-    "tarball": "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz";
-  },
-  "gitHead": "f746b3405d8f9e28054d11b97e1436f6a15016c4",
-  "homepage": "https://github.com/npm/osenv#readme";,
-  "keywords": [
-    "environment",
-    "variable",
-    "home",
-    "tmpdir",
-    "path",
-    "prompt",
-    "ps1"
-  ],
-  "license": "ISC",
-  "main": "osenv.js",
-  "maintainers": [
-    {
-      "email": "[email protected]",
-      "name": "isaacs"
-    },
-    {
-      "email": "[email protected]",
-      "name": "robertkowalski"
-    },
-    {
-      "email": "[email protected]",
-      "name": "othiym23"
-    },
-    {
-      "email": "[email protected]",
-      "name": "iarna"
-    }
-  ],
-  "name": "osenv",
-  "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/npm/osenv.git";
-  },
-  "scripts": {
-    "test": "tap test/*.js"
-  },
-  "version": "0.1.3"
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/test/unix.js
----------------------------------------------------------------------
diff --git a/node_modules/osenv/test/unix.js b/node_modules/osenv/test/unix.js
deleted file mode 100644
index f87cbfb..0000000
--- a/node_modules/osenv/test/unix.js
+++ /dev/null
@@ -1,71 +0,0 @@
-// only run this test on windows
-// pretending to be another platform is too hacky, since it breaks
-// how the underlying system looks up module paths and runs
-// child processes, and all that stuff is cached.
-if (process.platform === 'win32') {
-  console.log('TAP Version 13\n' +
-              '1..0\n' +
-              '# Skip unix tests, this is not unix\n')
-  return
-}
-var tap = require('tap')
-
-// like unix, but funny
-process.env.USER = 'sirUser'
-process.env.HOME = '/home/sirUser'
-process.env.HOSTNAME = 'my-machine'
-process.env.TMPDIR = '/tmpdir'
-process.env.TMP = '/tmp'
-process.env.TEMP = '/temp'
-process.env.PATH = '/opt/local/bin:/usr/local/bin:/usr/bin/:bin'
-process.env.PS1 = '(o_o) $ '
-process.env.EDITOR = 'edit'
-process.env.VISUAL = 'visualedit'
-process.env.SHELL = 'zsh'
-
-tap.test('basic unix sanity test', function (t) {
-  var osenv = require('../osenv.js')
-
-  t.equal(osenv.user(), process.env.USER)
-  t.equal(osenv.home(), process.env.HOME)
-  t.equal(osenv.hostname(), process.env.HOSTNAME)
-  t.same(osenv.path(), process.env.PATH.split(':'))
-  t.equal(osenv.prompt(), process.env.PS1)
-  t.equal(osenv.tmpdir(), process.env.TMPDIR)
-
-  // mildly evil, but it's for a test.
-  process.env.TMPDIR = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.tmpdir(), process.env.TMP)
-
-  process.env.TMP = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.tmpdir(), process.env.TEMP)
-
-  process.env.TEMP = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  osenv.home = function () { return null }
-  t.equal(osenv.tmpdir(), '/tmp')
-
-  t.equal(osenv.editor(), 'edit')
-  process.env.EDITOR = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.editor(), 'visualedit')
-
-  process.env.VISUAL = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.editor(), 'vi')
-
-  t.equal(osenv.shell(), 'zsh')
-  process.env.SHELL = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.shell(), 'bash')
-
-  t.end()
-})

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/test/windows.js
----------------------------------------------------------------------
diff --git a/node_modules/osenv/test/windows.js 
b/node_modules/osenv/test/windows.js
deleted file mode 100644
index c9d837a..0000000
--- a/node_modules/osenv/test/windows.js
+++ /dev/null
@@ -1,74 +0,0 @@
-// only run this test on windows
-// pretending to be another platform is too hacky, since it breaks
-// how the underlying system looks up module paths and runs
-// child processes, and all that stuff is cached.
-if (process.platform !== 'win32') {
-  console.log('TAP version 13\n' +
-              '1..0 # Skip windows tests, this is not windows\n')
-  return
-}
-
-// load this before clubbing the platform name.
-var tap = require('tap')
-
-process.env.windir = 'c:\\windows'
-process.env.USERDOMAIN = 'some-domain'
-process.env.USERNAME = 'sirUser'
-process.env.USERPROFILE = 'C:\\Users\\sirUser'
-process.env.COMPUTERNAME = 'my-machine'
-process.env.TMPDIR = 'C:\\tmpdir'
-process.env.TMP = 'C:\\tmp'
-process.env.TEMP = 'C:\\temp'
-process.env.Path = 'C:\\Program Files\\;C:\\Binary Stuff\\bin'
-process.env.PROMPT = '(o_o) $ '
-process.env.EDITOR = 'edit'
-process.env.VISUAL = 'visualedit'
-process.env.ComSpec = 'some-com'
-
-tap.test('basic windows sanity test', function (t) {
-  var osenv = require('../osenv.js')
-
-  t.equal(osenv.user(),
-          process.env.USERDOMAIN + '\\' + process.env.USERNAME)
-  t.equal(osenv.home(), process.env.USERPROFILE)
-  t.equal(osenv.hostname(), process.env.COMPUTERNAME)
-  t.same(osenv.path(), process.env.Path.split(';'))
-  t.equal(osenv.prompt(), process.env.PROMPT)
-  t.equal(osenv.tmpdir(), process.env.TMPDIR)
-
-  // mildly evil, but it's for a test.
-  process.env.TMPDIR = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.tmpdir(), process.env.TMP)
-
-  process.env.TMP = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.tmpdir(), process.env.TEMP)
-
-  process.env.TEMP = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  osenv.home = function () { return null }
-  t.equal(osenv.tmpdir(), 'c:\\windows\\temp')
-
-  t.equal(osenv.editor(), 'edit')
-  process.env.EDITOR = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.editor(), 'visualedit')
-
-  process.env.VISUAL = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.editor(), 'notepad.exe')
-
-  t.equal(osenv.shell(), 'some-com')
-  process.env.ComSpec = ''
-  delete require.cache[require.resolve('../osenv.js')]
-  var osenv = require('../osenv.js')
-  t.equal(osenv.shell(), 'cmd')
-
-  t.end()
-})

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/osenv/x.tap
----------------------------------------------------------------------
diff --git a/node_modules/osenv/x.tap b/node_modules/osenv/x.tap
deleted file mode 100644
index 90d8472..0000000
--- a/node_modules/osenv/x.tap
+++ /dev/null
@@ -1,39 +0,0 @@
-TAP version 13
-    # Subtest: test/unix.js
-    TAP version 13
-        # Subtest: basic unix sanity test
-        ok 1 - should be equal
-        ok 2 - should be equal
-        ok 3 - should be equal
-        ok 4 - should be equivalent
-        ok 5 - should be equal
-        ok 6 - should be equal
-        ok 7 - should be equal
-        ok 8 - should be equal
-        ok 9 - should be equal
-        ok 10 - should be equal
-        ok 11 - should be equal
-        ok 12 - should be equal
-        ok 13 - should be equal
-        ok 14 - should be equal
-        1..14
-    ok 1 - basic unix sanity test # time=10.712ms
-
-    1..1
-    # time=18.422ms
-ok 1 - test/unix.js # time=169.827ms
-
-    # Subtest: test/windows.js
-    TAP version 13
-    1..0 # Skip windows tests, this is not windows
-
-ok 2 - test/windows.js # SKIP Skip windows tests, this is not windows
-
-    # Subtest: test/nada.js
-    TAP version 13
-    1..0
-
-ok 2 - test/nada.js
-
-1..3
-# time=274.247ms

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/path-is-absolute/index.js
----------------------------------------------------------------------
diff --git a/node_modules/path-is-absolute/index.js 
b/node_modules/path-is-absolute/index.js
deleted file mode 100644
index 19f103f..0000000
--- a/node_modules/path-is-absolute/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-'use strict';
-
-function posix(path) {
-       return path.charAt(0) === '/';
-};
-
-function win32(path) {
-       // 
https://github.com/joyent/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56
-       var splitDeviceRe = 
/^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/;
-       var result = splitDeviceRe.exec(path);
-       var device = result[1] || '';
-       var isUnc = !!device && device.charAt(1) !== ':';
-
-       // UNC paths are always absolute
-       return !!result[2] || isUnc;
-};
-
-module.exports = process.platform === 'win32' ? win32 : posix;
-module.exports.posix = posix;
-module.exports.win32 = win32;

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/path-is-absolute/license
----------------------------------------------------------------------
diff --git a/node_modules/path-is-absolute/license 
b/node_modules/path-is-absolute/license
deleted file mode 100644
index 654d0bf..0000000
--- a/node_modules/path-is-absolute/license
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/path-is-absolute/package.json
----------------------------------------------------------------------
diff --git a/node_modules/path-is-absolute/package.json 
b/node_modules/path-is-absolute/package.json
deleted file mode 100644
index c31133e..0000000
--- a/node_modules/path-is-absolute/package.json
+++ /dev/null
@@ -1,97 +0,0 @@
-{
-  "_args": [
-    [
-      "path-is-absolute@^1.0.0",
-      "D:\\Cordova\\cordova-windows\\node_modules\\glob"
-    ]
-  ],
-  "_from": "path-is-absolute@>=1.0.0 <2.0.0",
-  "_id": "[email protected]",
-  "_inCache": true,
-  "_installable": true,
-  "_location": "/path-is-absolute",
-  "_nodeVersion": "0.12.0",
-  "_npmUser": {
-    "email": "[email protected]",
-    "name": "sindresorhus"
-  },
-  "_npmVersion": "2.5.1",
-  "_phantomChildren": {},
-  "_requested": {
-    "name": "path-is-absolute",
-    "raw": "path-is-absolute@^1.0.0",
-    "rawSpec": "^1.0.0",
-    "scope": null,
-    "spec": ">=1.0.0 <2.0.0",
-    "type": "range"
-  },
-  "_requiredBy": [
-    "/glob"
-  ],
-  "_resolved": 
"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz";,
-  "_shasum": "263dada66ab3f2fb10bf7f9d24dd8f3e570ef912",
-  "_shrinkwrap": null,
-  "_spec": "path-is-absolute@^1.0.0",
-  "_where": "D:\\Cordova\\cordova-windows\\node_modules\\glob",
-  "author": {
-    "email": "[email protected]",
-    "name": "Sindre Sorhus",
-    "url": "sindresorhus.com"
-  },
-  "bugs": {
-    "url": "https://github.com/sindresorhus/path-is-absolute/issues";
-  },
-  "dependencies": {},
-  "description": "Node.js 0.12 path.isAbsolute() ponyfill",
-  "devDependencies": {},
-  "directories": {},
-  "dist": {
-    "shasum": "263dada66ab3f2fb10bf7f9d24dd8f3e570ef912",
-    "tarball": 
"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz";
-  },
-  "engines": {
-    "node": ">=0.10.0"
-  },
-  "files": [
-    "index.js"
-  ],
-  "gitHead": "7a76a0c9f2263192beedbe0a820e4d0baee5b7a1",
-  "homepage": "https://github.com/sindresorhus/path-is-absolute";,
-  "keywords": [
-    "path",
-    "paths",
-    "file",
-    "dir",
-    "absolute",
-    "isabsolute",
-    "is-absolute",
-    "built-in",
-    "util",
-    "utils",
-    "core",
-    "ponyfill",
-    "polyfill",
-    "shim",
-    "is",
-    "detect",
-    "check"
-  ],
-  "license": "MIT",
-  "maintainers": [
-    {
-      "email": "[email protected]",
-      "name": "sindresorhus"
-    }
-  ],
-  "name": "path-is-absolute",
-  "optionalDependencies": {},
-  "readme": "ERROR: No README data found!",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/sindresorhus/path-is-absolute.git";
-  },
-  "scripts": {
-    "test": "node test.js"
-  },
-  "version": "1.0.0"
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/path-is-absolute/readme.md
----------------------------------------------------------------------
diff --git a/node_modules/path-is-absolute/readme.md 
b/node_modules/path-is-absolute/readme.md
deleted file mode 100644
index cdf94f4..0000000
--- a/node_modules/path-is-absolute/readme.md
+++ /dev/null
@@ -1,51 +0,0 @@
-# path-is-absolute [![Build 
Status](https://travis-ci.org/sindresorhus/path-is-absolute.svg?branch=master)](https://travis-ci.org/sindresorhus/path-is-absolute)
-
-> Node.js 0.12 
[`path.isAbsolute()`](http://nodejs.org/api/path.html#path_path_isabsolute_path)
 ponyfill
-
-> Ponyfill: A polyfill that doesn't overwrite the native method
-
-
-## Install
-
-```
-$ npm install --save path-is-absolute
-```
-
-
-## Usage
-
-```js
-var pathIsAbsolute = require('path-is-absolute');
-
-// Linux
-pathIsAbsolute('/home/foo');
-//=> true
-
-// Windows
-pathIsAbsolute('C:/Users/');
-//=> true
-
-// Any OS
-pathIsAbsolute.posix('/home/foo');
-//=> true
-```
-
-
-## API
-
-See the [`path.isAbsolute()` 
docs](http://nodejs.org/api/path.html#path_path_isabsolute_path).
-
-### pathIsAbsolute(path)
-
-### pathIsAbsolute.posix(path)
-
-The Posix specific version.
-
-### pathIsAbsolute.win32(path)
-
-The Windows specific version.
-
-
-## License
-
-MIT © [Sindre Sorhus](http://sindresorhus.com)

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/plist/.jshintrc
----------------------------------------------------------------------
diff --git a/node_modules/plist/.jshintrc b/node_modules/plist/.jshintrc
deleted file mode 100644
index 3f42622..0000000
--- a/node_modules/plist/.jshintrc
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-  "laxbreak": true,
-  "laxcomma": true
-}

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/plist/.travis.yml
----------------------------------------------------------------------
diff --git a/node_modules/plist/.travis.yml b/node_modules/plist/.travis.yml
deleted file mode 100644
index f82fbdc..0000000
--- a/node_modules/plist/.travis.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-language: node_js
-node_js:
-- '0.10'
-- '0.11'
-- '4.0'
-- '4.1'
-env:
-  global:
-  - secure: 
xlLmWO7akYQjmDgrv6/b/ZMGILF8FReD+k6A/u8pYRD2JW29hhwvRwIQGcKp9+zmJdn4i5M4D1/qJkCeI3pdhAYBDHvzHOHSEwLJz1ESB2Crv6fa69CtpIufQkWvIxmZoU49tCaLpMBaIroGihJ4DAXdIVOIz6Ur9vXLDhGsE4c=
-  - secure: 
aQ46RdxL10xR5ZJJTMUKdH5k4tdrzgZ87nlwHC+pTr6bfRw3UKYC+6Rm7yQpg9wq0Io9O9dYCP007gQGSWstbjr1+jXNu/ubtNG+q5cpWBQZZZ013VHh9QJTf1MnetsZxbv8Yhrjg590s6vruT0oqesOnB2CizO/BsKxnY37Nos=
-matrix:
-  include:
-  - node_js: '0.10'
-    env: BROWSER_NAME=chrome BROWSER_VERSION=latest
-  - node_js: '0.10'
-    env: BROWSER_NAME=chrome BROWSER_VERSION=29
-  - node_js: '0.10'
-    env: BROWSER_NAME=firefox BROWSER_VERSION=latest
-  - node_js: '0.10'
-    env: BROWSER_NAME=opera BROWSER_VERSION=latest
-  - node_js: '0.10'
-    env: BROWSER_NAME=safari BROWSER_VERSION=latest
-  - node_js: '0.10'
-    env: BROWSER_NAME=safari BROWSER_VERSION=7
-  - node_js: '0.10'
-    env: BROWSER_NAME=safari BROWSER_VERSION=6
-  - node_js: '0.10'
-    env: BROWSER_NAME=safari BROWSER_VERSION=5
-  - node_js: '0.10'
-    env: BROWSER_NAME=ie BROWSER_VERSION=11
-  - node_js: '0.10'
-    env: BROWSER_NAME=ie BROWSER_VERSION=10
-  - node_js: '0.10'
-    env: BROWSER_NAME=ie BROWSER_VERSION=9

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/plist/History.md
----------------------------------------------------------------------
diff --git a/node_modules/plist/History.md b/node_modules/plist/History.md
deleted file mode 100644
index 73f36ae..0000000
--- a/node_modules/plist/History.md
+++ /dev/null
@@ -1,122 +0,0 @@
-1.2.0 / 2015-11-10
-
-* package: update "browserify" to v12.0.1
-* package: update "zuul" to v3.7.2
-* package: update "xmlbuilder" to v4.0.0
-* package: update "util-deprecate" to v1.0.2
-* package: update "mocha" to v2.3.3
-* package: update "base64-js" to v0.0.8
-* build: omit undefined values
-* travis: add node 4.0 and 4.1 to test matrix
-
-1.1.0 / 2014-08-27
-==================
-
- * package: update "browserify" to v5.10.1
- * package: update "zuul" to v1.10.2
- * README: add "Sauce Test Status" build badge
- * travis: use new "plistjs" sauce credentials
- * travis: set up zuul saucelabs automated testing
-
-1.0.1 / 2014-06-25
-==================
-
-  * add .zuul.yml file for browser testing
-  * remove Testling stuff
-  * build: fix global variable `val` leak
-  * package: use --check-leaks when running mocha tests
-  * README: update examples to use preferred API
-  * package: add "browser" keyword
-
-1.0.0 / 2014-05-20
-==================
-
-  * package: remove "android-browser"
-  * test: add <dict> build() test
-  * test: re-add the empty string build() test
-  * test: remove "fixtures" and legacy "tests" dir
-  * test: add some more build() tests
-  * test: add a parse() CDATA test
-  * test: starting on build() tests
-  * test: more parse() tests
-  * package: attempt to fix "android-browser" testling
-  * parse: better <data> with newline handling
-  * README: add Testling badge
-  * test: add <data> node tests
-  * test: add a <date> parse() test
-  * travis: don't test node v0.6 or v0.8
-  * test: some more parse() tests
-  * test: add simple <string> parsing test
-  * build: add support for an optional "opts" object
-  * package: test mobile devices
-  * test: use multiline to inline the XML
-  * package: beautify
-  * package: fix "mocha" harness
-  * package: more testling browsers
-  * build: add the "version=1.0" attribute
-  * beginnings of "mocha" tests
-  * build: more JSDocs
-  * tests: add test that ensures that empty string conversion works
-  * build: update "xmlbuilder" to v2.2.1
-  * parse: ignore comment and cdata nodes
-  * tests: make the "Newlines" test actually contain a newline
-  * parse: lint
-  * test travis
-  * README: add Travis CI badge
-  * add .travis.yml file
-  * build: updated DTD to reflect name change
-  * parse: return falsey values in an Array plist
-  * build: fix encoding a typed array in the browser
-  * build: add support for Typed Arrays and ArrayBuffers
-  * build: more lint
-  * build: slight cleanup and optimizations
-  * build: use .txt() for the "date" value
-  * parse: always return a Buffer for <data> nodes
-  * build: don't interpret Strings as base64
-  * dist: commit prebuilt plist*.js files
-  * parse: fix typo in deprecate message
-  * parse: fix parse() return value
-  * parse: add jsdoc comments for the deprecated APIs
-  * parse: add `parse()` function
-  * node, parse: use `util-deprecate` module
-  * re-implemented parseFile to be asynchronous
-  * node: fix jsdoc comment
-  * Makefile: fix "node" require stubbing
-  * examples: add "browser" example
-  * package: tweak "main"
-  * package: remove "engines" field
-  * Makefile: fix --exclude command for browserify
-  * package: update "description"
-  * lib: more styling
-  * Makefile: add -build.js and -parse.js dist files
-  * lib: separate out the parse and build logic into their own files
-  * Makefile: add makefile with browserify build rules
-  * package: add "browserify" as a dev dependency
-  * plist: tabs to spaces (again)
-  * add a .jshintrc file
-  * LICENSE: update
-  * node-webkit support
-  * Ignore tests/ in .npmignore file
-  * Remove duplicate devDependencies key
-  * Remove trailing whitespace
-  * adding recent contributors. Bumping npm package number (patch release)
-  * Fixed node.js string handling
-  * bumping version number
-  * Fixed global variable plist leak
-  * patch release 0.4.1
-  * removed temporary debug output file
-  * flipping the cases for writing data and string elements in build(). 
removed the 125 length check. Added validation of base64 encoding for data 
fields when parsing. added unit tests.
-  * fixed syntax errors in README examples (issue #20)
-  * added Sync versions of calls. added deprecation warnings for old method 
calls. updated documentation. If the resulting object from parseStringSync is 
an array with 1 element, return just the element. If a plist string or file 
doesnt have a <plist> tag as the document root element, fail noisily (issue #15)
-  * incrementing package version
-  * added cross platform base64 encode/decode for data elements (issue #17.) 
Comments and hygiene.
-  * refactored the code to use a DOM parser instead of SAX. closes issues #5 
and #16
-  * rolling up package version
-  * updated base64 detection regexp. updated README. hygiene.
-  * refactored the build function. Fixes issue #14
-  * refactored tests. Modified tests from issue #9. thanks @sylvinus
-  * upgrade xmlbuilder package version. this is why .end() was needed in last 
commit; breaking change to xmlbuilder lib. :/
-  * bug fix in build function, forgot to call .end() Refactored tests to use 
nodeunit
-  * Implemented support for real, identity tests
-  * Refactored base64 detection - still sloppy, fixed date building. Passing 
tests OK.
-  * Implemented basic plist builder that turns an existing JS object into 
plist XML. date, real and data types still need to be implemented.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/plist/LICENSE
----------------------------------------------------------------------
diff --git a/node_modules/plist/LICENSE b/node_modules/plist/LICENSE
deleted file mode 100644
index 04a9e91..0000000
--- a/node_modules/plist/LICENSE
+++ /dev/null
@@ -1,24 +0,0 @@
-(The MIT License)
-
-Copyright (c) 2010-2014 Nathan Rajlich <[email protected]>
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/plist/Makefile
----------------------------------------------------------------------
diff --git a/node_modules/plist/Makefile b/node_modules/plist/Makefile
deleted file mode 100644
index 62695e0..0000000
--- a/node_modules/plist/Makefile
+++ /dev/null
@@ -1,76 +0,0 @@
-
-# get Makefile directory name: http://stackoverflow.com/a/5982798/376773
-THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
-THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd)
-
-# BIN directory
-BIN := $(THIS_DIR)/node_modules/.bin
-
-# applications
-NODE ?= node
-NPM ?= $(NODE) $(shell which npm)
-BROWSERIFY ?= $(NODE) $(BIN)/browserify
-MOCHA ?= $(NODE) $(BIN)/mocha
-ZUUL ?= $(NODE) $(BIN)/zuul
-
-REPORTER ?= spec
-
-all: dist/plist.js dist/plist-build.js dist/plist-parse.js
-
-install: node_modules
-
-clean:
-       @rm -rf node_modules dist
-
-dist:
-       @mkdir -p $@
-
-dist/plist-build.js: node_modules lib/build.js dist
-       @$(BROWSERIFY) \
-               --standalone plist \
-               lib/build.js > $@
-
-dist/plist-parse.js: node_modules lib/parse.js dist
-       @$(BROWSERIFY) \
-               --standalone plist \
-               lib/parse.js > $@
-
-dist/plist.js: node_modules lib/*.js dist
-       @$(BROWSERIFY) \
-               --standalone plist \
-               --ignore lib/node.js \
-               lib/plist.js > $@
-
-node_modules: package.json
-       @NODE_ENV= $(NPM) install
-       @touch node_modules
-
-test:
-       @if [ "x$(BROWSER_NAME)" = "x" ]; then \
-               $(MAKE) test-node; \
-               else \
-               $(MAKE) test-zuul; \
-       fi
-
-test-node:
-       @$(MOCHA) \
-               --reporter $(REPORTER) \
-               test/*.js
-
-test-zuul:
-       @if [ "x$(BROWSER_PLATFORM)" = "x" ]; then \
-               $(ZUUL) \
-               --ui mocha-bdd \
-               --browser-name $(BROWSER_NAME) \
-               --browser-version $(BROWSER_VERSION) \
-               test/*.js; \
-               else \
-               $(ZUUL) \
-               --ui mocha-bdd \
-               --browser-name $(BROWSER_NAME) \
-               --browser-version $(BROWSER_VERSION) \
-               --browser-platform "$(BROWSER_PLATFORM)" \
-               test/*.js; \
-       fi
-
-.PHONY: all install clean test test-node test-zuul

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/4c0c81a1/node_modules/plist/README.md
----------------------------------------------------------------------
diff --git a/node_modules/plist/README.md b/node_modules/plist/README.md
deleted file mode 100644
index 4d0310a..0000000
--- a/node_modules/plist/README.md
+++ /dev/null
@@ -1,113 +0,0 @@
-plist.js
-========
-### Mac OS X Plist parser/builder for Node.js and browsers
-
-[![Sauce Test 
Status](https://saucelabs.com/browser-matrix/plistjs.svg)](https://saucelabs.com/u/plistjs)
-
-[![Build 
Status](https://travis-ci.org/TooTallNate/plist.js.svg?branch=master)](https://travis-ci.org/TooTallNate/plist.js)
-
-Provides facilities for reading and writing Mac OS X Plist (property list)
-files. These are often used in programming OS X and iOS applications, as
-well as the iTunes configuration XML file.
-
-Plist files represent stored programming "object"s. They are very similar
-to JSON. A valid Plist file is representable as a native JavaScript Object
-and vice-versa.
-
-
-## Usage
-
-### Node.js
-
-Install using `npm`:
-
-``` bash
-$ npm install --save plist
-```
-
-Then `require()` the _plist_ module in your file:
-
-``` js
-var plist = require('plist');
-
-// now use the `parse()` and `build()` functions
-var val = plist.parse('<plist><string>Hello World!</string></plist>');
-console.log(val);  // "Hello World!"
-```
-
-
-### Browser
-
-Include the `dist/plist.js` in a `<script>` tag in your HTML file:
-
-``` html
-<script src="plist.js"></script>
-<script>
-  // now use the `parse()` and `build()` functions
-  var val = plist.parse('<plist><string>Hello World!</string></plist>');
-  console.log(val);  // "Hello World!"
-</script>
-```
-
-
-## API
-
-### Parsing
-
-Parsing a plist from filename:
-
-``` javascript
-var fs = require('fs');
-var plist = require('plist');
-
-var obj = plist.parse(fs.readFileSync('myPlist.plist', 'utf8'));
-console.log(JSON.stringify(obj));
-```
-
-Parsing a plist from string payload:
-
-``` javascript
-var plist = require('plist');
-
-var obj = plist.parse('<plist><string>Hello World!</string></plist>');
-console.log(obj);  // Hello World!
-```
-
-### Building
-
-Given an existing JavaScript Object, you can turn it into an XML document
-that complies with the plist DTD:
-
-``` javascript
-var plist = require('plist');
-
-console.log(plist.build({ foo: 'bar' }));
-```
-
-
-## License
-
-(The MIT License)
-
-Copyright (c) 2010-2014 Nathan Rajlich <[email protected]>
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to