Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.1KB

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "bytes",
  3. "author": {
  4. "name": "TJ Holowaychuk",
  5. "email": "tj@vision-media.ca",
  6. "url": "http://tjholowaychuk.com"
  7. },
  8. "description": "byte size string parser / serializer",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/visionmedia/bytes.js.git"
  12. },
  13. "version": "1.0.0",
  14. "main": "index.js",
  15. "dependencies": {},
  16. "devDependencies": {
  17. "mocha": "*",
  18. "should": "*"
  19. },
  20. "component": {
  21. "scripts": {
  22. "bytes/index.js": "index.js"
  23. }
  24. },
  25. "readme": "# node-bytes\n\n Byte string parser / formatter.\n\n## Example:\n\n```js\nbytes('1kb')\n// => 1024\n\nbytes('2mb')\n// => 2097152\n\nbytes('1gb')\n// => 1073741824\n\nbytes(1073741824)\n// => 1gb\n\nbytes(1099511627776)\n// => 1tb\n```\n\n## Installation\n\n```\n$ npm install bytes\n$ component install visionmedia/bytes.js\n```\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>\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",
  26. "readmeFilename": "Readme.md",
  27. "bugs": {
  28. "url": "https://github.com/visionmedia/bytes.js/issues"
  29. },
  30. "_id": "bytes@1.0.0",
  31. "_from": "bytes@1.0.0"
  32. }