├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── index.tests.js ├── examples └── full.js ├── lib └── index.js ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | node_modules 4 | 5 | coverage 6 | npm-debug.log 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | 4 | coverage 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/__tests__/index.tests.js -------------------------------------------------------------------------------- /examples/full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/examples/full.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/gilp/HEAD/yarn.lock --------------------------------------------------------------------------------