package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "yeoman-generator",
  3. "version": "0.13.4",
  4. "description": "Rails-inspired generator system that provides scaffolding for your apps",
  5. "keywords": [
  6. "development",
  7. "dev",
  8. "build",
  9. "tool",
  10. "cli",
  11. "scaffold",
  12. "generate"
  13. ],
  14. "homepage": "http://yeoman.io",
  15. "bugs": {
  16. "url": "https://github.com/yeoman/generator/issues"
  17. },
  18. "author": {
  19. "name": "Chrome Developer Relations"
  20. },
  21. "main": "main.js",
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/yeoman/generator.git"
  25. },
  26. "scripts": {
  27. "test": "DEBUG=generators:* mocha test/*.js --reporter list --timeout 100000",
  28. "legacy": "DEBUG=generators:* mocha test/legacy.js --reporter dot --timeout 100000",
  29. "test-generator": "mocha test/generators/*.js --reporter spec --timeout 100000"
  30. },
  31. "dependencies": {
  32. "cheerio": "~0.12.0",
  33. "request": "~2.25.0",
  34. "rimraf": "~2.2.0",
  35. "tar": "~0.1.17",
  36. "diff": "~1.0.4",
  37. "mime": "~1.2.9",
  38. "underscore.string": "~2.3.1",
  39. "lodash": "~1.3.0",
  40. "mkdirp": "~0.3.5",
  41. "glob": "~3.2.0",
  42. "debug": "~0.7.2",
  43. "isbinaryfile": "~0.1.8",
  44. "dargs": "~0.1.0",
  45. "async": "~0.2.8",
  46. "inquirer": "~0.3.1",
  47. "iconv-lite": "~0.2.10",
  48. "shelljs": "~0.1.4",
  49. "findup-sync": "~0.1.2",
  50. "chalk": "~0.2.0",
  51. "text-table": "~0.1.1"
  52. },
  53. "devDependencies": {
  54. "mocha": "~1.12.0",
  55. "proxyquire": "~0.4.0",
  56. "sinon": "~1.7.3",
  57. "markdox": "~0.1.2"
  58. },
  59. "readme": "# Generator [![Build Status](https://secure.travis-ci.org/yeoman/generator.png?branch=master)](http://travis-ci.org/yeoman/generator)\n\nA Rails-inspired generator system that provides scaffolding for your apps.\n\n![Generator output](https://img.skitch.com/20120923-jxbn2njgk5dp7ttk94i1tx9ek2.png)\n\n![Generator diff](https://img.skitch.com/20120922-kpjs68bgkshtsru4cwnb64fn82.png)\n\n\n## Getting Started\n\nIf you're interested in writing your own Yeoman generator we recommend reading the official [documentation](http://yeoman.io/generators.html).\n\nThere are typically two types of generators - simple boilerplate 'copiers' and more advanced generators which can use custom prompts, remote dependencies, wiring and much more.\n\nThe docs cover how to create generators from scratch as well as recommending command-line generators for making other generators.\n\n\n## Testing generators\n\nThere is currently no formal infrastructure for testing generators, however you may find our [mocha generator](https://github.com/yeoman/generator-mocha) for custom generators useful.\n\n\n## Officially maintained generators\n\n* [Web App](https://github.com/yeoman/generator-webapp#readme)\n* [AngularJS](https://github.com/yeoman/generator-angular#readme)\n* [Backbone](https://github.com/yeoman/generator-backbone#readme)\n* [BBB (Backbone Boilerplate)](https://github.com/yeoman/generator-bbb#readme)\n* [Chrome Apps Basic Boilerplate](https://github.com/yeoman/generator-chromeapp#readme)\n* [Ember](https://github.com/yeoman/generator-ember#readme)\n* [Jasmine](https://github.com/yeoman/generator-jasmine#readme)\n* [Mocha](https://github.com/yeoman/generator-mocha#readme)\n* [Karma](https://github.com/yeoman/generator-karma#readme)\n",
  60. "readmeFilename": "readme.md",
  61. "_id": "[email protected]",
  62. "_from": "yeoman-generator@~0.13.3"
  63. }