UNPKG

generator-modx-package

Version:
68 lines (67 loc) 4.15 kB
{ "name": "yeoman-generator", "version": "0.14.0", "description": "Rails-inspired generator system that provides scaffolding for your apps", "keywords": [ "development", "dev", "build", "tool", "cli", "scaffold", "generate" ], "homepage": "http://yeoman.io", "bugs": { "url": "https://github.com/yeoman/generator/issues" }, "author": { "name": "Chrome Developer Relations" }, "main": "main.js", "repository": { "type": "git", "url": "git://github.com/yeoman/generator.git" }, "scripts": { "test": "istanbul cover _mocha --report lcovonly -- test/*.js --reporter list --timeout 100000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", "legacy": "mocha test/legacy.js --reporter dot --timeout 100000", "test-generator": "mocha test/generators/*.js --reporter spec --timeout 100000" }, "dependencies": { "cheerio": "~0.12.0", "rimraf": "~2.2.0", "diff": "~1.0.4", "mime": "~1.2.9", "underscore.string": "~2.3.1", "lodash": "~2.2.1", "mkdirp": "~0.3.5", "glob": "~3.2.0", "debug": "~0.7.2", "isbinaryfile": "~0.1.8", "dargs": "~0.1.0", "async": "~0.2.8", "inquirer": "~0.3.1", "iconv-lite": "~0.2.10", "shelljs": "~0.2.6", "findup-sync": "~0.1.2", "chalk": "~0.3.0", "text-table": "~0.2.0", "download": "~0.1.6", "request": "~2.27.0", "file-utils": "~0.1.1" }, "devDependencies": { "mocha": "~1.13.0", "proxyquire": "~0.5.1", "sinon": "~1.7.3", "markdox": "~0.1.2", "coveralls": "~2.3.0", "mocha-lcov-reporter": "0.0.1", "istanbul": "~0.1.44" }, "readme": "# Generator [![Build Status](https://secure.travis-ci.org/yeoman/generator.png?branch=master)](http://travis-ci.org/yeoman/generator) [![Coverage Status](https://coveralls.io/repos/yeoman/generator/badge.png)](https://coveralls.io/r/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### Debugging\n\nTo debug a generator, you can pass Node.js debug's flags by running it like this:\n\n```bash\n# OS X / Linux\nnode --debug `which yo` <generator> [arguments]\n\n# Windows\nnode --debug <path to yo binary> <generator> [arguments]\n```\n\nYeoman generators also use a debug mode to log relevant informations. You can activate it by setting the `DEBUG` environment variable to the desired scope (for the generator system scope is `generators:*`).\n\n```bash\n# OS X / Linux\nDEBUG=generators/*\n\n# Windows\nset DEBUG=generators/*\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* [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", "readmeFilename": "readme.md", "_id": "yeoman-generator@0.14.0", "_from": "yeoman-generator@~0.14.0" }