Socket
Socket
Sign inDemoInstall

generator-prepare-git-repo

Package Overview
Dependencies
605
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    generator-prepare-git-repo

Yeoman generator for quick prepare github project structure


Version published
Weekly downloads
1
Maintainers
1
Install size
59.8 MB
Created
Weekly downloads
 

Readme

Source

generator-prepare-git-repo

NPM version Build Status Dependency Status DevDependency Status

Yeoman generator for quick start prepare template git project repository. Includes npm, travis, coveralls, dependencies badges.

Supports 2 types of templates:

  • ES5
  • ES6 with Babel transpiler.

mem

Install

npm install -g yo generator-prepare-git-repo

Usage

# create folder for your project
mkdir demo
cd demo


# run generator
yo prepare-git-repo

sample

Generated project tree

root
 | node_modules
 |  | ...
 | test
 |  | test.js
 | index.js
 | .babelrc     // only for ES6
 | .gitignore
 | .npmignore
 | .travis.yml
 | package.json
 | README.md

yo prepare-git-repo will install follow dependencies from template package.json:

"devDependencies": {
    "babel-cli": "*",           // only for ES6
    "babel-core": "*",          // only for ES6
    "babel-preset-es2015": "*", // only for ES6
    "coveralls": "*",
    "istanbul": "*",
    "mocha": "*",
    "mocha-lcov-reporter": "*",
    "should": "*",
    "isparta": "*",
    "npm-run-all": "*",
    "rimraf": "*"
  }

Composed with another generators:

License

MIT © Aleksandr Filatov

Keywords

FAQs

Last updated on 19 Feb 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc