├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .release.json ├── .travis.yml ├── Makefile ├── README.md ├── dist ├── index.js └── plugins │ └── reference.js ├── package.json ├── scripts ├── .pre-push ├── build.sh ├── install.sh ├── lint.sh ├── setup-hooks.sh ├── test.sh └── test.watch.sh └── src ├── _tests └── fixture-factory.spec.js ├── index.js └── plugins ├── index.js └── reference.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.log 4 | 5 | .*.sw* 6 | -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/.release.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/plugins/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/dist/plugins/reference.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.pre-push: -------------------------------------------------------------------------------- 1 | make lint 2 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | npm install --ignore-scripts 3 | -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/setup-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/scripts/setup-hooks.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/test.watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/scripts/test.watch.sh -------------------------------------------------------------------------------- /src/_tests/fixture-factory.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/src/_tests/fixture-factory.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/src/index.js -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/src/plugins/index.js -------------------------------------------------------------------------------- /src/plugins/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterKaleta/fixture-factory/HEAD/src/plugins/reference.js --------------------------------------------------------------------------------