├── .bowerrc ├── .gitignore ├── README.md ├── bower.json ├── data ├── 838712.json ├── author.json ├── test_citation.json └── test_citation2.json ├── docs ├── collection.png ├── impact-linear.png └── impact-log.png ├── impact-graph.js ├── package.json ├── style.css ├── test_impact.html ├── test_overview.html └── test_paper_cite.html /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "assets/components/" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/bower.json -------------------------------------------------------------------------------- /data/838712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/data/838712.json -------------------------------------------------------------------------------- /data/author.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/data/author.json -------------------------------------------------------------------------------- /data/test_citation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/data/test_citation.json -------------------------------------------------------------------------------- /data/test_citation2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/data/test_citation2.json -------------------------------------------------------------------------------- /docs/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/docs/collection.png -------------------------------------------------------------------------------- /docs/impact-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/docs/impact-linear.png -------------------------------------------------------------------------------- /docs/impact-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/docs/impact-log.png -------------------------------------------------------------------------------- /impact-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/impact-graph.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/style.css -------------------------------------------------------------------------------- /test_impact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/test_impact.html -------------------------------------------------------------------------------- /test_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/test_overview.html -------------------------------------------------------------------------------- /test_paper_cite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirehep/impact-graphs/HEAD/test_paper_cite.html --------------------------------------------------------------------------------