├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── README.md ├── lib └── estemplate.js ├── package.json └── test ├── custom_options.ast.json └── estemplate_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/README.md -------------------------------------------------------------------------------- /lib/estemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/lib/estemplate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/package.json -------------------------------------------------------------------------------- /test/custom_options.ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/test/custom_options.ast.json -------------------------------------------------------------------------------- /test/estemplate_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estools/estemplate/HEAD/test/estemplate_test.js --------------------------------------------------------------------------------