├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks └── scp.js └── test ├── fixtures ├── data-sample-1.txt └── data-sample-2.txt └── scp_base_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.iml 4 | .idea 5 | 6 | test/tmp -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/package.json -------------------------------------------------------------------------------- /tasks/scp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/tasks/scp.js -------------------------------------------------------------------------------- /test/fixtures/data-sample-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/test/fixtures/data-sample-1.txt -------------------------------------------------------------------------------- /test/fixtures/data-sample-2.txt: -------------------------------------------------------------------------------- 1 | test file #2 for grunt-scp 2 | 3 | . 4 | . -------------------------------------------------------------------------------- /test/scp_base_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spmjs/grunt-scp/HEAD/test/scp_base_test.js --------------------------------------------------------------------------------