├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── index.js ├── lib ├── load.js └── simple-seeder.js ├── menu.js ├── package.json └── test └── basic.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/index.js -------------------------------------------------------------------------------- /lib/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/lib/load.js -------------------------------------------------------------------------------- /lib/simple-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/lib/simple-seeder.js -------------------------------------------------------------------------------- /menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/menu.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holepunchto/simple-seeder/HEAD/test/basic.js --------------------------------------------------------------------------------