diff options
author | marzavec <admin@marzavec.com> | 2018-06-03 20:08:35 +0200 |
---|---|---|
committer | marzavec <admin@marzavec.com> | 2018-06-03 20:08:35 +0200 |
commit | 62daa4893f374c1cbbecc63e4f1d4eec3fd29325 (patch) | |
tree | f5677c91c86efd60eb78d4c6b0258b17c1926074 /clientSource | |
parent | Merge pull request #16 from OpSimple/master (diff) | |
download | hackchat-62daa4893f374c1cbbecc63e4f1d4eec3fd29325.tar.gz hackchat-62daa4893f374c1cbbecc63e4f1d4eec3fd29325.zip |
Completed protocol decoupling
Diffstat (limited to 'clientSource')
-rw-r--r-- | clientSource/package-lock.json | 42 | ||||
-rw-r--r-- | clientSource/package.json | 2 |
2 files changed, 22 insertions, 22 deletions
diff --git a/clientSource/package-lock.json b/clientSource/package-lock.json index 7e27046..25a29ca 100644 --- a/clientSource/package-lock.json +++ b/clientSource/package-lock.json @@ -32,10 +32,10 @@ "resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-3.2.0.tgz", "integrity": "sha512-Goilx/2cfU9vvfQjgtNgc2VmJAD8CasQ6rZDqCd2u4Hsyd/qFET6nBf60jiHodevR3nl3IGzNKtrzPXWP88utQ==", "requires": { - "he": "1.1.1", - "mime": "1.6.0", - "minimist": "1.2.0", - "url-join": "2.0.5" + "he": "^1.1.1", + "mime": "^1.4.1", + "minimist": "^1.1.0", + "url-join": "^2.0.2" } }, "eventemitter3": { @@ -48,7 +48,7 @@ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.0.tgz", "integrity": "sha512-fdrt472/9qQ6Kgjvb935ig6vJCuofpBUD14f9Vb+SLlm7xIe4Qva5gey8EKtv8lp7ahE1wilg3xL1znpVGtZIA==", "requires": { - "debug": "3.1.0" + "debug": "^3.1.0" } }, "he": { @@ -61,9 +61,9 @@ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", "requires": { - "eventemitter3": "3.1.0", - "follow-redirects": "1.5.0", - "requires-port": "1.0.0" + "eventemitter3": "^3.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" } }, "http-server": { @@ -72,13 +72,13 @@ "integrity": "sha512-6JeGDGoujJLmhjiRGlt8yK8Z9Kl0vnl/dQoQZlc4oeqaUoAKQg94NILLfrY3oWzSyFaQCVNTcKE5PZ3cH8VP9w==", "requires": { "colors": "1.0.3", - "corser": "2.0.1", - "ecstatic": "3.2.0", - "http-proxy": "1.17.0", - "opener": "1.4.3", - "optimist": "0.6.1", - "portfinder": "1.0.13", - "union": "0.4.6" + "corser": "~2.0.0", + "ecstatic": "^3.0.0", + "http-proxy": "^1.8.1", + "opener": "~1.4.0", + "optimist": "0.6.x", + "portfinder": "^1.0.13", + "union": "~0.4.3" } }, "mime": { @@ -121,8 +121,8 @@ "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", "requires": { - "minimist": "0.0.10", - "wordwrap": "0.0.3" + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" }, "dependencies": { "minimist": { @@ -137,9 +137,9 @@ "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz", "integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=", "requires": { - "async": "1.5.2", - "debug": "2.6.9", - "mkdirp": "0.5.1" + "async": "^1.5.2", + "debug": "^2.2.0", + "mkdirp": "0.5.x" }, "dependencies": { "debug": { @@ -167,7 +167,7 @@ "resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz", "integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=", "requires": { - "qs": "2.3.3" + "qs": "~2.3.3" } }, "url-join": { diff --git a/clientSource/package.json b/clientSource/package.json index 15f9f07..a8149c7 100644 --- a/clientSource/package.json +++ b/clientSource/package.json @@ -1,6 +1,6 @@ { "name": "hack.chat-v2", - "version": "2.0.1", + "version": "2.0.3", "description": "a minimal distraction free chat application", "main": "index.js", "repository": { |