├── .editorconfig ├── .eslintrc ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── docs └── images │ ├── all.ui-bootstrap.png │ ├── all.ui-router.png │ ├── legend.png │ ├── ui.bootstrap.tooltip.png │ └── ui.router.state.png ├── grunt ├── aliases.yml ├── angular_architecture_graph.js ├── clean.js ├── eslint.js ├── jshint.js └── nodeunit.js ├── package.json ├── tasks ├── angular_architecture_graph.js └── helpers.js ├── templates ├── all.def ├── legend.def ├── module.def └── modules.def └── test ├── angular_architecture_graph_test.js ├── expected └── ui-router.modules.dot └── fixtures ├── modular-app.js ├── ui-bootstrap.js └── ui-router.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/all.ui-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/docs/images/all.ui-bootstrap.png -------------------------------------------------------------------------------- /docs/images/all.ui-router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/docs/images/all.ui-router.png -------------------------------------------------------------------------------- /docs/images/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/docs/images/legend.png -------------------------------------------------------------------------------- /docs/images/ui.bootstrap.tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/docs/images/ui.bootstrap.tooltip.png -------------------------------------------------------------------------------- /docs/images/ui.router.state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/docs/images/ui.router.state.png -------------------------------------------------------------------------------- /grunt/aliases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/grunt/aliases.yml -------------------------------------------------------------------------------- /grunt/angular_architecture_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/grunt/angular_architecture_graph.js -------------------------------------------------------------------------------- /grunt/clean.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tests: ["tmp"] 3 | }; 4 | -------------------------------------------------------------------------------- /grunt/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/grunt/eslint.js -------------------------------------------------------------------------------- /grunt/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/grunt/jshint.js -------------------------------------------------------------------------------- /grunt/nodeunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/grunt/nodeunit.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/package.json -------------------------------------------------------------------------------- /tasks/angular_architecture_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/tasks/angular_architecture_graph.js -------------------------------------------------------------------------------- /tasks/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/tasks/helpers.js -------------------------------------------------------------------------------- /templates/all.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/templates/all.def -------------------------------------------------------------------------------- /templates/legend.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/templates/legend.def -------------------------------------------------------------------------------- /templates/module.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/templates/module.def -------------------------------------------------------------------------------- /templates/modules.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/templates/modules.def -------------------------------------------------------------------------------- /test/angular_architecture_graph_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/test/angular_architecture_graph_test.js -------------------------------------------------------------------------------- /test/expected/ui-router.modules.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/test/expected/ui-router.modules.dot -------------------------------------------------------------------------------- /test/fixtures/modular-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/test/fixtures/modular-app.js -------------------------------------------------------------------------------- /test/fixtures/ui-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/test/fixtures/ui-bootstrap.js -------------------------------------------------------------------------------- /test/fixtures/ui-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucalanca/grunt-angular-architecture-graph/HEAD/test/fixtures/ui-router.js --------------------------------------------------------------------------------