├── polymer.json
├── bower.json
├── CONTRIBUTING.md
├── demo
├── table-index.html
├── index.html
└── test.json
├── README.md
├── LICENSE
├── clinical-table.html
└── clinical-vis.html
/polymer.json:
--------------------------------------------------------------------------------
1 | {
2 | "lint": {
3 | "rules": [
4 | "polymer-2"
5 | ]
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "clinical-vis",
3 | "description": "Clinical-vis medical record visualization",
4 | "main": "clinical-vis.html",
5 | "dependencies": {
6 | "polymer": "Polymer/polymer#^2.0.0"
7 | },
8 | "devDependencies": {
9 | "iron-demo-helpers": "PolymerElements/iron-demo-helpers#^2.0.0",
10 | "web-component-tester": "Polymer/web-component-tester#^6.0.0",
11 | "webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0"
12 | },
13 | "resolutions": {
14 | "polymer": "^2.0.0"
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to Contribute
2 |
3 | We'd love to accept your patches and contributions to this project. There are
4 | just a few small guidelines you need to follow.
5 |
6 | ## Contributor License Agreement
7 |
8 | Contributions to this project must be accompanied by a Contributor License
9 | Agreement. You (or your employer) retain the copyright to your contribution;
10 | this simply gives us permission to use and redistribute your contributions as
11 | part of the project. Head over to