├── .gitignore ├── .npmignore ├── README.md ├── ci └── Jenkinsfile ├── datastore.js ├── docs └── index.md ├── example.js ├── index.js ├── package.json └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test 2 | /benchmark 3 | /ci 4 | /coverage 5 | /.nyc_output 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/README.md -------------------------------------------------------------------------------- /ci/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/ci/Jenkinsfile -------------------------------------------------------------------------------- /datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/datastore.js -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/docs/index.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-graph-builder/HEAD/test/index.js --------------------------------------------------------------------------------