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 7.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "jade",
  3. "description": "Jade template engine",
  4. "version": "1.6.0",
  5. "author": {
  6. "name": "TJ Holowaychuk",
  7. "email": "tj@vision-media.ca"
  8. },
  9. "maintainers": [
  10. {
  11. "name": "forbeslindesay",
  12. "email": "forbes@lindesay.co.uk"
  13. },
  14. {
  15. "name": "bloodyowl"
  16. },
  17. {
  18. "name": "jbnicolai",
  19. "email": "joshua@jbna.nl"
  20. }
  21. ],
  22. "license": "MIT",
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/visionmedia/jade"
  26. },
  27. "main": "./index.js",
  28. "bin": {
  29. "jade": "./bin/jade.js"
  30. },
  31. "dependencies": {
  32. "character-parser": "1.2.0",
  33. "commander": "2.1.0",
  34. "constantinople": "~2.0.0",
  35. "mkdirp": "~0.5.0",
  36. "monocle": "1.1.51",
  37. "transformers": "2.1.0",
  38. "void-elements": "~1.0.0",
  39. "with": "~3.0.0"
  40. },
  41. "devDependencies": {
  42. "coffee-script": "*",
  43. "mocha": "*",
  44. "istanbul": "*",
  45. "markdown": "*",
  46. "stylus": "*",
  47. "should": "*",
  48. "less": "*",
  49. "uglify-js": "*",
  50. "browserify": "*",
  51. "linify": "*",
  52. "less-file": "0.0.8",
  53. "express": "~3.4.8",
  54. "browserify-middleware": "~2.4.0",
  55. "twbs": "0.0.6",
  56. "highlight-codemirror": "~3.20.0",
  57. "inconsolata": "0.0.2",
  58. "jade-code-mirror": "~1.0.5",
  59. "code-mirror": "~3.22.0",
  60. "handle": "~1.0.0",
  61. "jade-highlighter": "~1.0.5",
  62. "marked": "~0.3.2",
  63. "stop": "^3.0.0-rc1",
  64. "opener": "^1.3.0",
  65. "github-basic": "^3.0.0",
  66. "pull-request": "^3.0.0",
  67. "lsr": "^1.0.0",
  68. "rimraf": "^2.2.8"
  69. },
  70. "component": {
  71. "scripts": {
  72. "jade": "runtime.js"
  73. }
  74. },
  75. "scripts": {
  76. "test": "mocha -R spec && npm run coverage",
  77. "coverage": "istanbul cover node_modules/mocha/bin/_mocha",
  78. "prepublish": "npm prune && linify transform bin && npm run build",
  79. "build": "npm run compile",
  80. "compile": "npm run compile-full && npm run compile-runtime",
  81. "compile-full": "browserify ./lib/jade.js --standalone jade -x ./node_modules/transformers > jade.js",
  82. "compile-runtime": "browserify ./lib/runtime.js --standalone jade > runtime.js"
  83. },
  84. "browser": {
  85. "./lib/filters.js": "./lib/filters-client.js"
  86. },
  87. "readme": "# [![Jade - template engine ](http://i.imgur.com/5zf2aVt.png)](http://jade-lang.com/)\n\nFull documentation is at [jade-lang.com](http://jade-lang.com/)\n\n Jade is a high performance template engine heavily influenced by [Haml](http://haml-lang.com)\n and implemented with JavaScript for [node](http://nodejs.org). For discussion join the [Google Group](http://groups.google.com/group/jadejs).\n\n You can test drive Jade online [here](http://naltatis.github.com/jade-syntax-docs).\n\n [![Build Status](https://img.shields.io/travis/visionmedia/jade/master.svg)](https://travis-ci.org/visionmedia/jade)\n [![Dependency Status](https://img.shields.io/gemnasium/visionmedia/jade.svg)](https://gemnasium.com/visionmedia/jade)\n [![NPM version](https://img.shields.io/npm/v/jade.svg)](http://badge.fury.io/js/jade)\n\n## Installation\n\nvia npm:\n\n```bash\n$ npm install jade\n```\n\n## Syntax\n\nJade is a clean, whitespace sensitive syntax for writing html. Here is a simple example:\n\n```jade\ndoctype html\nhtml(lang=\"en\")\n head\n title= pageTitle\n script(type='text/javascript').\n if (foo) bar(1 + 5)\n body\n h1 Jade - node template engine\n #container.col\n if youAreUsingJade\n p You are amazing\n else\n p Get on it!\n p.\n Jade is a terse and simple templating language with a\n strong focus on performance and powerful features.\n```\n\nbecomes\n\n\n```html\n<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <title>Jade</title>\n <script type=\"text/javascript\">\n if (foo) bar(1 + 5)\n </script>\n </head>\n <body>\n <h1>Jade - node template engine</h1>\n <div id=\"container\" class=\"col\">\n <p>You are amazing</p>\n <p>Jade is a terse and simple templating language with a strong focus on performance and powerful features.</p>\n </div>\n </body>\n</html>\n```\n\nThe official [jade tutorial](http://jade-lang.com/tutorial/) is a great place to start. While that (and the syntax documentation) is being finished, you can view some of the old documentation [here](https://github.com/visionmedia/jade/blob/master/jade.md) and [here](https://github.com/visionmedia/jade/blob/master/jade-language.md)\n\n## API\n\nFor full API, see [jade-lang.com/api](http://jade-lang.com/api/)\n\n```js\nvar jade = require('jade');\n\n// compile\nvar fn = jade.compile('string of jade', options);\nvar html = fn(locals);\n\n// render\nvar html = jade.render('string of jade', merge(options, locals));\n\n// renderFile\nvar html = jade.renderFile('filename.jade', merge(options, locals));\n```\n\n### Options\n\n - `filename` Used in exceptions, and required when using includes\n - `compileDebug` When `false` no debug instrumentation is compiled\n - `pretty` Add pretty-indentation whitespace to output _(false by default)_\n\n## Browser Support\n\n The latest version of jade can be download for the browser in standalone form from [here](https://github.com/visionmedia/jade/raw/master/jade.js). It only supports the very latest browsers though, and is a large file. It is recommended that you pre-compile your jade templates to JavaScript and then just use the [runtime.js](https://github.com/visionmedia/jade/raw/master/runtime.js) library on the client.\n\n To compile a template for use on the client using the command line, do:\n\n```console\n$ jade --client --no-debug filename.jade\n```\n\nwhich will produce `filename.js` containing the compiled template.\n\n## Command Line\n\nAfter installing the latest version of [node](http://nodejs.org/), install with:\n\n```console\n$ npm install jade -g\n```\n\nand run with\n\n```console\n$ jade --help\n```\n\n## Additional Resources\n\nTutorials:\n\n - cssdeck interactive [Jade syntax tutorial](http://cssdeck.com/labs/learning-the-jade-templating-engine-syntax)\n - cssdeck interactive [Jade logic tutorial](http://cssdeck.com/labs/jade-templating-tutorial-codecast-part-2)\n - [Jade について。](https://gist.github.com/japboy/5402844) (A Japanese Tutorial)\n - [Jade - 模板引擎](https://github.com/visionmedia/jade/blob/master/Readme_zh-cn.md)\n\nImplementations in other languages:\n\n - [php](http://github.com/everzet/jade.php)\n - [scala](http://scalate.fusesource.org/versions/snapshot/documentation/scaml-reference.html)\n - [ruby](https://github.com/slim-template/slim)\n - [python](https://github.com/SyrusAkbary/pyjade)\n - [java](https://github.com/neuland/jade4j)\n\nOther:\n\n - [Emacs Mode](https://github.com/brianc/jade-mode)\n - [Vim Syntax](https://github.com/digitaltoad/vim-jade)\n - [TextMate Bundle](http://github.com/miksago/jade-tmbundle)\n - [Coda/SubEtha syntax Mode](https://github.com/aaronmccall/jade.mode)\n - [Screencasts](http://tjholowaychuk.com/post/1004255394/jade-screencast-template-engine-for-nodejs)\n - [html2jade](https://github.com/donpark/html2jade) converter\n - [Jade Server](https://github.com/ded/jade-server) Ideal for building local prototypes apart from any application\n\n## License\n\nMIT\n",
  88. "readmeFilename": "README.md",
  89. "bugs": {
  90. "url": "https://github.com/visionmedia/jade/issues"
  91. },
  92. "_id": "jade@1.6.0",
  93. "_from": "jade@~1.6.0"
  94. }