UNPKG

240 BJavaScriptView Raw
1#!/usr/bin/env node
2
3if (process.version.match(/v(\d+)\./)[1] < 4) {
4 console.error('standard: Node v4 or greater is required. `standard` did not run.')
5} else {
6 var opts = require('../options')
7 require('standard-engine').cli(opts)
8}
9