├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── SECURITY.md ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .wallaby.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── create-package-json ├── index.js ├── lib ├── git.js ├── npm.js ├── package-name.js └── scope-and-name.js ├── package.json └── test ├── fixtures ├── ignore-existing │ └── package.json ├── overrides-keywords │ └── package.json ├── overrides-name │ └── package.json ├── overrides-repository-string │ └── package.json ├── overrides-repository │ └── package.json └── scope │ └── @test │ └── scoped │ └── .gitkeep ├── index.js └── npm.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [wesleytodd] 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test/tmp 3 | coverage 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github 2 | test 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/.wallaby.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-package-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/bin/create-package-json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/index.js -------------------------------------------------------------------------------- /lib/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/lib/git.js -------------------------------------------------------------------------------- /lib/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/lib/npm.js -------------------------------------------------------------------------------- /lib/package-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/lib/package-name.js -------------------------------------------------------------------------------- /lib/scope-and-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/lib/scope-and-name.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/ignore-existing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/fixtures/ignore-existing/package.json -------------------------------------------------------------------------------- /test/fixtures/overrides-keywords/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/fixtures/overrides-keywords/package.json -------------------------------------------------------------------------------- /test/fixtures/overrides-name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/fixtures/overrides-name/package.json -------------------------------------------------------------------------------- /test/fixtures/overrides-repository-string/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/fixtures/overrides-repository-string/package.json -------------------------------------------------------------------------------- /test/fixtures/overrides-repository/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/fixtures/overrides-repository/package.json -------------------------------------------------------------------------------- /test/fixtures/scope/@test/scoped/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/index.js -------------------------------------------------------------------------------- /test/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgjs/create-package-json/HEAD/test/npm.js --------------------------------------------------------------------------------