├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── fixtures ├── dummy.json ├── testFile └── testFile2 ├── gulpfile.js ├── index.js ├── license ├── package.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | coverage 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/fixtures/dummy.json -------------------------------------------------------------------------------- /fixtures/testFile: -------------------------------------------------------------------------------- 1 | Roses are red. 2 | -------------------------------------------------------------------------------- /fixtures/testFile2: -------------------------------------------------------------------------------- 1 | Violets are blue. 2 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yeoman-assert/HEAD/test.js --------------------------------------------------------------------------------