├── .npmignore ├── .travis.yml ├── LICENSE ├── README.markdown ├── lib ├── cli.js └── ngist.js ├── package.json └── src ├── cli.coffee └── ngist.coffee /.npmignore: -------------------------------------------------------------------------------- 1 | *.coffee 2 | *.html 3 | .DS_Store 4 | .git* 5 | src/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/README.markdown -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/ngist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/lib/ngist.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/src/cli.coffee -------------------------------------------------------------------------------- /src/ngist.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chapel/ngist/HEAD/src/ngist.coffee --------------------------------------------------------------------------------