├── .gitignore ├── LICENSE ├── README.md ├── bin └── dcat ├── index.js ├── lib └── tree.js ├── package.json └── test ├── fixtures └── cw-test │ ├── JSONLD │ ├── LICENSE │ ├── README.md │ ├── app │ └── app.zip │ ├── article │ └── pone.pdf │ ├── data.csv │ ├── img │ └── daftpunk.jpg │ ├── scripts │ └── test.r │ └── src │ ├── lib.h │ └── main.c └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/README.md -------------------------------------------------------------------------------- /bin/dcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/bin/dcat -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/index.js -------------------------------------------------------------------------------- /lib/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/lib/tree.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/cw-test/JSONLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/test/fixtures/cw-test/JSONLD -------------------------------------------------------------------------------- /test/fixtures/cw-test/LICENSE: -------------------------------------------------------------------------------- 1 | test license file -------------------------------------------------------------------------------- /test/fixtures/cw-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/test/fixtures/cw-test/README.md -------------------------------------------------------------------------------- /test/fixtures/cw-test/app/app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/test/fixtures/cw-test/app/app.zip -------------------------------------------------------------------------------- /test/fixtures/cw-test/article/pone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/test/fixtures/cw-test/article/pone.pdf -------------------------------------------------------------------------------- /test/fixtures/cw-test/data.csv: -------------------------------------------------------------------------------- 1 | "a","b" 2 | 1,2 3 | 3,4 4 | -------------------------------------------------------------------------------- /test/fixtures/cw-test/img/daftpunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/test/fixtures/cw-test/img/daftpunk.jpg -------------------------------------------------------------------------------- /test/fixtures/cw-test/scripts/test.r: -------------------------------------------------------------------------------- 1 | print('hello'); 2 | -------------------------------------------------------------------------------- /test/fixtures/cw-test/src/lib.h: -------------------------------------------------------------------------------- 1 | #include "smtg.h" 2 | -------------------------------------------------------------------------------- /test/fixtures/cw-test/src/main.c: -------------------------------------------------------------------------------- 1 | #include "lib.h" 2 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sballesteros/dcat/HEAD/test/test.js --------------------------------------------------------------------------------