├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── bin └── cli.js ├── docs └── layout.html ├── index.js ├── package.json ├── templates ├── .gitignore.mustache ├── .travis.yml.mustache ├── CHANGELOG.md.mustache ├── CONTRIBUTING.md.mustache ├── LICENSE.md │ ├── Apache-2.0.mustache │ ├── BSD-3-Clause.mustache │ ├── CC0-1.0.mustache │ ├── ISC.mustache │ ├── MIT.mustache │ └── UNLICENSED.mustache ├── README.md.mustache ├── index.js ├── package.json.mustache └── test │ └── index.js │ ├── semistandard.mustache │ └── standard.mustache └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | site 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/bin/cli.js -------------------------------------------------------------------------------- /docs/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/docs/layout.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/package.json -------------------------------------------------------------------------------- /templates/.gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/.gitignore.mustache -------------------------------------------------------------------------------- /templates/.travis.yml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/.travis.yml.mustache -------------------------------------------------------------------------------- /templates/CHANGELOG.md.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/CHANGELOG.md.mustache -------------------------------------------------------------------------------- /templates/CONTRIBUTING.md.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/CONTRIBUTING.md.mustache -------------------------------------------------------------------------------- /templates/LICENSE.md/Apache-2.0.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/LICENSE.md/Apache-2.0.mustache -------------------------------------------------------------------------------- /templates/LICENSE.md/BSD-3-Clause.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/LICENSE.md/BSD-3-Clause.mustache -------------------------------------------------------------------------------- /templates/LICENSE.md/CC0-1.0.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/LICENSE.md/CC0-1.0.mustache -------------------------------------------------------------------------------- /templates/LICENSE.md/ISC.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/LICENSE.md/ISC.mustache -------------------------------------------------------------------------------- /templates/LICENSE.md/MIT.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/LICENSE.md/MIT.mustache -------------------------------------------------------------------------------- /templates/LICENSE.md/UNLICENSED.mustache: -------------------------------------------------------------------------------- 1 | # UNLICENSED 2 | 3 | No licensing terms. This is a private module. 4 | -------------------------------------------------------------------------------- /templates/README.md.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/README.md.mustache -------------------------------------------------------------------------------- /templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/index.js -------------------------------------------------------------------------------- /templates/package.json.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/package.json.mustache -------------------------------------------------------------------------------- /templates/test/index.js/semistandard.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/test/index.js/semistandard.mustache -------------------------------------------------------------------------------- /templates/test/index.js/standard.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/templates/test/index.js/standard.mustache -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/module-init/HEAD/test/index.js --------------------------------------------------------------------------------