0.0.2 • Published 7 years ago

min-cli v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

min-cli

A template for js repos. It creates files, installs dev dependencies, and creates the scripts field in package.json.

install

$ npm install -g min-cli

use

$ min my-folder
.
├── test/
├── .eslintignore
├── .eslintrc
├── .gitignore
└── package.json
{
  "scripts": {
    "preversion": "npm run lint && npm run deps && npm test",
    "postversion": "git push && git push --tags",
    "lint": "eslint .",
    "deps": "dependency-check package.json && dependency-check package.json --unused --entry test/*.js -i dependency-check -i eslint -i eslint-config-minlint -i tap-spec",
    "test": "tape test/*.js | tap-spec"
  }
}
0.0.2

7 years ago

0.0.1

7 years ago

0.0.0

7 years ago