package.json 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "pomelo",
  3. "version": "1.1.3",
  4. "private": false,
  5. "homepage": "https://github.com/NetEase/pomelo",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/NetEase/pomelo.git"
  9. },
  10. "scripts": {
  11. "test": "grunt"
  12. },
  13. "bugs": {
  14. "url": "https://github.com/NetEase/pomelo/issues"
  15. },
  16. "licenses": [
  17. {
  18. "type": "MIT",
  19. "url": "https://github.com/NetEase/pomelo#license"
  20. }
  21. ],
  22. "keywords": [
  23. "pomelo",
  24. "framework",
  25. "game",
  26. "web",
  27. "realtime",
  28. "server"
  29. ],
  30. "dependencies": {
  31. "socket.io": "2.2.0",
  32. "async": "0.2.5",
  33. "seq-queue": "0.0.5",
  34. "crc": "0.2.0",
  35. "cliff": "0.1.8",
  36. "mkdirp": "0.3.3",
  37. "pomelo-loader": "0.0.6",
  38. "pomelo-rpc": "0.4.5",
  39. "pomelo-protocol": "0.1.4",
  40. "pomelo-admin": "0.4.1",
  41. "pomelo-logger": "0.1.6",
  42. "pomelo-scheduler": "0.3.9",
  43. "ws": "~6.1.0",
  44. "pomelo-protobuf": "0.4.0",
  45. "node-bignumber": "1.2.1",
  46. "commander": "2.0.0",
  47. "mqtt": "0.3.9"
  48. },
  49. "bin": {
  50. "pomelo": "./bin/pomelo"
  51. },
  52. "devDependencies": {
  53. "should": "3.3.1",
  54. "mocha": ">=0.0.1",
  55. "socket.io-client": "2.2.0",
  56. "muk": ">=0.0.1",
  57. "grunt": "~0.4.2",
  58. "grunt-mocha-test": "0.8.x",
  59. "grunt-contrib-clean": "0.5.x",
  60. "grunt-contrib-jshint": "~0.8.0",
  61. "blanket": "~1.1.6"
  62. },
  63. "contributors": [
  64. {
  65. "name": "* Charlie Crane",
  66. "email": "xieccy@gmail.com"
  67. },
  68. {
  69. "name": "* Chang chang",
  70. "email": "changchang005@gmail.com"
  71. },
  72. {
  73. "name": "* piaohai",
  74. "email": "piaohai@gmail.com"
  75. },
  76. {
  77. "name": "* py8765",
  78. "email": "pengyang633@126.com"
  79. },
  80. {
  81. "name": "* Demon",
  82. "email": "zhhang0925@gmail.com"
  83. },
  84. {
  85. "name": "* numbcoder",
  86. "email": "wzhao23@gmail.com"
  87. },
  88. {
  89. "name": "* halfblood",
  90. "email": "halfblood369@gmail.com"
  91. }
  92. ],
  93. "readme": "## Pomelo -- a fast, scalable game server framework for node.js\n\nPomelo is a fast, scalable game server framework for [node.js](http://nodejs.org).\nIt provides the basic development framework and many related components, including libraries and tools.\nPomelo is also suitable for real-time web applications; its distributed architecture makes pomelo scale better than other real-time web frameworks.\n\n[![Build Status](https://travis-ci.org/NetEase/pomelo.svg?branch=master)](https://travis-ci.org/NetEase/pomelo)\n\n * Homepage: <http://pomelo.netease.com/>\n * Mailing list: <https://groups.google.com/group/pomelo>\n * Documentation: <http://github.com/NetEase/pomelo>\n * Wiki: <https://github.com/NetEase/pomelo/wiki/>\n * Issues: <https://github.com/NetEase/pomelo/issues/>\n * Tags: game, nodejs\n\n\n## Features\n\n### Complete support of game server and realtime application server architecture\n\n* Multiple-player game: mobile, social, web, MMO rpg(middle size)\n* Realtime application: chat, message push, etc.\n\n### Fast, scalable\n\n* Distributed (multi-process) architecture, can be easily scale up\n* Flexible server extension\n* Full performance optimization and test\n\n### Easy\n\n* Simple API: request, response, broadcast, etc.\n* Lightweight: high development efficiency based on node.js\n* Convention over configuration: almost zero config\n\n### Powerful\n\n* Many clients support, including javascript, flash, android, iOS, cocos2d-x, C\n* Many libraries and tools, including command line tool, admin tool, performance test tool, AI, path finding etc.\n* Good reference materials: full docs, many examples and [an open-source MMO RPG demo](https://github.com/NetEase/pomelo/wiki/Introduction-to--Lord-of-Pomelo)\n\n### Extensible\n\n* Support plugin architecture, easy to add new features through plugins. We also provide many plugins like online status, master high availability.\n* Custom features, users can define their own network protocol, custom components very easy.\n\n## Why should I use pomelo?\nFast, scalable, real-time game server development is not an easy job, and a good container or framework can reduce its complexity.\nUnfortunately, unlike web, finding a game server framework solution is difficult, especially an open source solution. Pomelo fills this gap, providing a full solution for building game server frameworks.\nPomelo has the following advantages:\n* The architecture is scalable. It uses a multi-process, single thread runtime architecture, which has been proven in the industry and is especially suited to the node.js thread model.\n* Easy to use, the development model is quite similar to web, using convention over configuration, with almost zero config. The [API](http://pomelo.netease.com/api.html) is also easy to use.\n* The framework is extensible. Based on the node.js micro module principle, the core of pomelo is small. All of the components, libraries and tools are individual npm modules, and anyone can create their own module to extend the framework.\n* The reference materials and documentation are quite complete. In addition to the documentation, we also provide [an open-source MMO RPG demo](https://github.com/NetEase/pomelo/wiki/Introduction-to--Lord-of-Pomelo) (HTML5 client), which is a far better reference material than any book.\n\n## How can I develop with pomelo?\nWith the following references, you can quickly familiarize yourself with the pomelo development process:\n* [Pomelo documents](https://github.com/NetEase/pomelo/wiki)\n* [Getting started](https://github.com/NetEase/pomelo/wiki/Welcome-to-Pomelo)\n* [Tutorial](https://github.com/NetEase/pomelo/wiki/Preface)\n\n\n## Contributors\n* NetEase, Inc. (@NetEase)\n* Peter Johnson(@missinglink)\n* Aaron Yoshitake \n* @D-Deo \n* Eduard Gotwig\n* Eric Muyser(@stokegames)\n* @GeforceLee\n* Harold Jiang(@jzsues)\n* @ETiV\n* [kaisatec](https://github.com/kaisatec)\n* [roytan883](https://github.com/roytan883)\n* [wuxian](https://github.com/wuxian)\n* [zxc122333](https://github.com/zxc122333)\n* [newebug](https://github.com/newebug)\n* [jiangzhuo](https://github.com/jiangzhuo)\n* [youxiachai](https://github.com/youxiachai)\n* [qiankanglai](https://github.com/qiankanglai)\n* [xieren58](https://github.com/xieren58)\n* [prim](https://github.com/prim)\n* [Akaleth](https://github.com/Akaleth)\n* [pipi32167](https://github.com/pipi32167)\n* [ljhsai](https://github.com/ljhsai)\n* [zhanghaojie](https://github.com/zhanghaojie)\n* [airandfingers](https://github.com/airandfingers)\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2012-2014 NetEase, Inc. and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n",
  94. "readmeFilename": "README.md",
  95. "description": "Pomelo is a fast, scalable game server framework for [node.js](http://nodejs.org). It provides the basic development framework and many related components, including libraries and tools. Pomelo is also suitable for real-time web applications; its distributed architecture makes pomelo scale better than other real-time web frameworks.",
  96. "_id": "pomelo@1.1.3",
  97. "_shasum": "4ccaf6ee6c6e8a7aae8b822ce4765cd2c37d43ff",
  98. "_from": "pomelo@",
  99. "_resolved": "https://registry.npmjs.org/pomelo/-/pomelo-1.1.3.tgz"
  100. }