chore: update testing (jasmine & nyc) (#48)

* chore: update jasmine dependencies
* chore: update nyc configs
3 files changed
tree: eff1b3a31ecc4137dfcec6604120a934cb3fc0ba
  1. .github/
  2. spec/
  3. .eslintrc.yml
  4. .gitignore
  5. .npmignore
  6. .ratignore
  7. .travis.yml
  8. appveyor.yml
  9. index.js
  10. LICENSE
  11. package-lock.json
  12. package.json
  13. README.md
  14. RELEASENOTES.md
README.md

Build status Build Status

cordova-create

This module is used for creating cordova style projects. It also incudes support for cordova templates. It can fetch templates from npm and git.

Usage:

const create = require('cordova-create');

await create(dest, opts);

Parameters

dest

Required. Path to the destination where the project will be created. Must be an empty dir if it exists.

opts

Optional. Supports following properties.

{
    // Attributes to be set in package.json & config.xml
    id: String,
    name: String,
    version: String,

    // The path/url/package-name to the template that should be used
    template: String,

    // An EventEmitter instance that will be used for logging purposes
    // (actually it only needs to implement a compatible `emit` method)
    events: EventEmitter
}