1.2.2 • Published 10 years ago
standardize v1.2.2
standardize
Scaffolds standard style for a new module.
- runs
npm install --save-dev standard - adds
standardto your"scripts"test
PRs/suggestions welcome.
Install
npm install standardize -gExample
Just run standardize on your module directory
standardizeIt will auto-install standard (if it isn't already installed), then add a new script field that looks like:
"scripts": {
"test": "standard"
}If the existing script starts with node or tape, then standard will be prefixed like so:
"scripts": {
"test": "standard && node test.js"
}You can specify standardize --snazzy if you would rather install and use snazzy in your module, for better error reporting.
semistandard
You can use standardize --semi to install semistandard instead of standard.
Usage
CLI
Usage:
standardize [opts]
Options:
--snazzy use a pretty-printer for standard
--silent does not log anything to terminal
Example:
standardize --snazzy --silentAPI
standardize([opt], cb)
Standardizes the module at process.cwd() and calls cb(err) when finished. Options:
cwdthe base directory to install frompackagethepackage.jsonpath, defaults topath.join(cwd, 'package.json')verbosewhether to print install and update information tostderr(default false)
Example:
var standardize = require('standardize')
var path = require('path')
standardize({
cwd: process.cwd(),
package: path.join(process.cwd(), 'package.json')
}, function (err) {
if (err) throw err
console.log("updated!")
})License
MIT, see LICENSE.md for details.
