Yeoman generator generating a base template to start a Toy Problem.
- Install:
$ npm install --global generator-toy
- Run:
$ yo toy
Here's a list of our supported options:
name
(String, defaulttoyproblem-boilerplate
) Project name.version
(String, default0.0.0
) Project version.description
(String) Project description.authorName
(String) Author name.authorEmail
(String) Author email.authorUrl
(String) Author homepage url.
Scaffolds out a complete Toy Problem exercise with JavaScript Testing and Linting support:
.
├── .git
├── .gitignore
├── LICENSE
├── README.md
├── index.js
├── package.json
└── test.js
Run $ npm test
to run your test suite.
MIT License © 2015, Joao Stein.