├── .gitignore ├── .jshintrc ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── bootstrap ├── empty.html ├── phantomCSSAdaptor.js ├── phantomFlowAdaptor.js ├── start.js └── xUnit.js ├── package.json ├── report_templates └── Dendrogram │ ├── chosen.css │ ├── chosen.jquery.min.js │ ├── d3ClusterDendrogram.js │ ├── d3FlowTree.js │ ├── index.html │ ├── lodash.js │ ├── main.css │ └── main.js ├── tasks └── phantomflow.js └── test └── simple.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | npm-debug.log 3 | tmp 4 | node_modules 5 | test-results 6 | .idea -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/bootstrap/empty.html -------------------------------------------------------------------------------- /bootstrap/phantomCSSAdaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/bootstrap/phantomCSSAdaptor.js -------------------------------------------------------------------------------- /bootstrap/phantomFlowAdaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/bootstrap/phantomFlowAdaptor.js -------------------------------------------------------------------------------- /bootstrap/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/bootstrap/start.js -------------------------------------------------------------------------------- /bootstrap/xUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/bootstrap/xUnit.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/package.json -------------------------------------------------------------------------------- /report_templates/Dendrogram/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/chosen.css -------------------------------------------------------------------------------- /report_templates/Dendrogram/chosen.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/chosen.jquery.min.js -------------------------------------------------------------------------------- /report_templates/Dendrogram/d3ClusterDendrogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/d3ClusterDendrogram.js -------------------------------------------------------------------------------- /report_templates/Dendrogram/d3FlowTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/d3FlowTree.js -------------------------------------------------------------------------------- /report_templates/Dendrogram/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/index.html -------------------------------------------------------------------------------- /report_templates/Dendrogram/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/lodash.js -------------------------------------------------------------------------------- /report_templates/Dendrogram/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/main.css -------------------------------------------------------------------------------- /report_templates/Dendrogram/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/report_templates/Dendrogram/main.js -------------------------------------------------------------------------------- /tasks/phantomflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/tasks/phantomflow.js -------------------------------------------------------------------------------- /test/simple.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuddleEng/grunt-phantomflow/HEAD/test/simple.test.js --------------------------------------------------------------------------------