├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── give.sh ├── package.json └── test ├── helpers ├── init-test ├── rm-test └── run /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | .DS_Store 3 | .*.sw[op] 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/README.md -------------------------------------------------------------------------------- /give.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/give.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/package.json -------------------------------------------------------------------------------- /test/helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/test/helpers -------------------------------------------------------------------------------- /test/init-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/test/init-test -------------------------------------------------------------------------------- /test/rm-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/test/rm-test -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmalecki/give/HEAD/test/run --------------------------------------------------------------------------------