diff --git a/LICENSE b/LICENSE index a2c0742..c6746cb 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2019 Frederic Charette +Copyright 2020 Frederic Charette Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/package.json b/package.json index be7c52a..d0fb5e7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "kalm-monorepo", + "name": "kalm", "private": true, - "version": "3.2.1", + "version": "3.2.2", "description": "The socket optimizer", "main": "packages/kalm/bin/kalm.js", "scripts": { @@ -41,17 +41,17 @@ }, "devDependencies": { "@types/jest": "^24.0.17", - "@types/node": "^12.7.0", - "@typescript-eslint/eslint-plugin": "^2.3.0", - "@typescript-eslint/parser": "^2.3.0", - "eslint": "^6.5.0", + "@types/node": "^13.1.0", + "@typescript-eslint/eslint-plugin": "^2.14.0", + "@typescript-eslint/parser": "^2.14.0", + "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.0.0", - "eslint-plugin-import": "^2.18.0", - "husky": "^3.0.8", + "eslint-plugin-import": "^2.19.0", + "husky": "^3.1.0", "jest": "^24.9.0", "socket.io": "^2.3.0", "socket.io-client": "^2.3.0", - "ts-jest": "^24.1.0", - "typescript": "^3.6.0" + "ts-jest": "^24.2.0", + "typescript": "^3.7.4" } } diff --git a/packages/ipc/README.md b/packages/ipc/README.md index 9e5879b..3b36d4b 100644 --- a/packages/ipc/README.md +++ b/packages/ipc/README.md @@ -13,4 +13,12 @@ } ``` -For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) \ No newline at end of file +For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) + +## Contribute + +If you think of something that you want, [open an issue](//github.com/kalm/kalm.js/issues/new) or file a pull request, we'll be more than happy to take a look! + +## License + +[Apache 2.0](LICENSE) (c) 2020 Frederic Charette diff --git a/packages/ipc/package.json b/packages/ipc/package.json index 5eaca04..ce6d315 100644 --- a/packages/ipc/package.json +++ b/packages/ipc/package.json @@ -1,6 +1,6 @@ { "name": "@kalm/ipc", - "version": "3.2.1", + "version": "3.2.2", "description": "IPC transport for Kalm", "main": "bin/ipc.js", "scripts": { diff --git a/packages/kalm/README.md b/packages/kalm/README.md index 95d8ff6..15a64f6 100644 --- a/packages/kalm/README.md +++ b/packages/kalm/README.md @@ -140,4 +140,4 @@ Support this project with your organization. Your logo will show up here with a ## License -[Apache 2.0](LICENSE) (c) 2019 Frederic Charette +[Apache 2.0](LICENSE) (c) 2020 Frederic Charette diff --git a/packages/kalm/package.json b/packages/kalm/package.json index 9c67fe6..6fec90f 100644 --- a/packages/kalm/package.json +++ b/packages/kalm/package.json @@ -1,6 +1,6 @@ { "name": "kalm", - "version": "3.2.1", + "version": "3.2.2", "description": "The socket optimizer", "main": "bin/kalm.js", "scripts": { diff --git a/packages/tcp/README.md b/packages/tcp/README.md index 2e46513..bc51a34 100644 --- a/packages/tcp/README.md +++ b/packages/tcp/README.md @@ -12,4 +12,12 @@ } ``` -For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) \ No newline at end of file +For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) + +## Contribute + +If you think of something that you want, [open an issue](//github.com/kalm/kalm.js/issues/new) or file a pull request, we'll be more than happy to take a look! + +## License + +[Apache 2.0](LICENSE) (c) 2020 Frederic Charette diff --git a/packages/tcp/package.json b/packages/tcp/package.json index ce52778..c59fb42 100644 --- a/packages/tcp/package.json +++ b/packages/tcp/package.json @@ -1,6 +1,6 @@ { "name": "@kalm/tcp", - "version": "3.2.1", + "version": "3.2.2", "description": "TCP transport for Kalm", "main": "bin/tcp.js", "scripts": { diff --git a/packages/udp/README.md b/packages/udp/README.md index 79c94e6..86e4baa 100644 --- a/packages/udp/README.md +++ b/packages/udp/README.md @@ -16,4 +16,12 @@ } ``` -For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) \ No newline at end of file +For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) + +## Contribute + +If you think of something that you want, [open an issue](//github.com/kalm/kalm.js/issues/new) or file a pull request, we'll be more than happy to take a look! + +## License + +[Apache 2.0](LICENSE) (c) 2020 Frederic Charette diff --git a/packages/udp/package.json b/packages/udp/package.json index cd0995d..817d692 100644 --- a/packages/udp/package.json +++ b/packages/udp/package.json @@ -1,6 +1,6 @@ { "name": "@kalm/udp", - "version": "3.2.1", + "version": "3.2.2", "description": "UDP transport for Kalm", "main": "bin/udp.js", "scripts": { diff --git a/packages/ws/README.md b/packages/ws/README.md index 35afb84..613a038 100644 --- a/packages/ws/README.md +++ b/packages/ws/README.md @@ -14,4 +14,12 @@ } ``` -For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) \ No newline at end of file +For more info, refer to the [Kalm Homepage](https://github.com/kalm/kalm.js) + +## Contribute + +If you think of something that you want, [open an issue](//github.com/kalm/kalm.js/issues/new) or file a pull request, we'll be more than happy to take a look! + +## License + +[Apache 2.0](LICENSE) (c) 2020 Frederic Charette diff --git a/packages/ws/package.json b/packages/ws/package.json index 831f00f..f46292e 100644 --- a/packages/ws/package.json +++ b/packages/ws/package.json @@ -1,6 +1,6 @@ { "name": "@kalm/ws", - "version": "3.2.1", + "version": "3.2.2", "description": "WebSocket transport for Kalm", "main": "bin/ws.js", "scripts": {