├── .github ├── dependabot.yml └── workflows │ ├── CODEOWNERS │ └── ci.yaml ├── .gitignore ├── README.md ├── package.json └── packages └── create-pkg ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── create-package ├── index.js ├── package-support.json ├── package.json ├── templates ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── SECURITY.md │ └── workflows │ │ └── test.yml ├── .npmrc ├── LICENSE ├── README.md ├── index.js └── test │ └── index.js └── test ├── index.js └── tmp ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md └── workflows │ └── test.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── index.js ├── package.json └── test └── index.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @wesleytodd @rxmarbles 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test/tmp 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Create PKG 2 | 3 | TODO: Add specificities here 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/package.json -------------------------------------------------------------------------------- /packages/create-pkg/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /packages/create-pkg/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/create-pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/LICENSE -------------------------------------------------------------------------------- /packages/create-pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/README.md -------------------------------------------------------------------------------- /packages/create-pkg/bin/create-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/bin/create-package -------------------------------------------------------------------------------- /packages/create-pkg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/index.js -------------------------------------------------------------------------------- /packages/create-pkg/package-support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/package-support.json -------------------------------------------------------------------------------- /packages/create-pkg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/package.json -------------------------------------------------------------------------------- /packages/create-pkg/templates/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /packages/create-pkg/templates/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/create-pkg/templates/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/.github/SECURITY.md -------------------------------------------------------------------------------- /packages/create-pkg/templates/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/.github/workflows/test.yml -------------------------------------------------------------------------------- /packages/create-pkg/templates/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/create-pkg/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/LICENSE -------------------------------------------------------------------------------- /packages/create-pkg/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/README.md -------------------------------------------------------------------------------- /packages/create-pkg/templates/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function () { 4 | return 'Hello World' 5 | } 6 | -------------------------------------------------------------------------------- /packages/create-pkg/templates/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/templates/test/index.js -------------------------------------------------------------------------------- /packages/create-pkg/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/index.js -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/.github/SECURITY.md -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/.github/workflows/test.yml -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/.gitignore -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/LICENSE -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/README.md -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function () { 4 | return 'Hello World' 5 | } 6 | -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/package.json -------------------------------------------------------------------------------- /packages/create-pkg/test/tmp/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-pkg/HEAD/packages/create-pkg/test/tmp/test/index.js --------------------------------------------------------------------------------