├── .aegir.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── scripts └── node-globals.js ├── src ├── index.js ├── resolver.js ├── util.js └── util │ ├── commit.js │ ├── tag.js │ ├── tree.js │ └── util.js └── test ├── fixtures ├── 0a1690e0640a212aafed1824eb208ffddab1789b ├── 0faccf822badf55f15fb0c3f4122fa13798f769e ├── 19f0805d8de36b6442e8c573074112ba72ad6780 ├── 42fd8d7404f5127314e248b2cbbe1423f12faeb9 ├── 4b271beec86978454072b632f382c6ccb3938a45 ├── 4d5e7ac145aaf440600dd06a97e8cc65f8acd4dc ├── 5af4dc18899e8ac95904eaf2b4abf1a2ca5e1507 ├── 70a3540bd51658ab564806785d5516a4e89b6450 ├── 7ffd1401f599c70364eda431d29363e037b2c92c ├── 802992c4220de19a90767f3000a79a31b98d0df7 ├── 832b4a8497de78248f70c06e0f06e785a74fea4c ├── 88a72947d8b4f0ab7185389efcdd5dace4643e04 ├── 933b7583b7767b07ea4cf242c1be29162eb8bb85 ├── 9f358a4addefcab294b83e4282bfef1f9625a249 ├── README.md ├── a0f06ca3cdb1e6e7f603794ef1cd9f9867f85551 ├── b1c46e7c32ff56e56a3da52be375348a664650ba ├── cf461f783732a8aa5f7d8679e112bd4c876aa19b ├── d52e70c9e34ac03cdf77f46aec388c2f9574bd93 ├── ed19ea7ea03ecd036c653b9c4cba16df71424a60 ├── ee048050d16bc428c4faef1074b740866ad553bb ├── f5227cbd32973ec90f48f2547e6fe16c80b92bd5 ├── fa59b93c6ce9db82ce57de9046eb738e9f3c0952 ├── fc80daf21bb484cfd42ad4ed4d17da48638199ea ├── ffef5350b6f8762cc6272b0255e968f50b6577ed ├── objects.json └── update.sh ├── mod.spec.js ├── parse.spec.js ├── resolver.spec.js └── util.spec.js /.aegir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/.aegir.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/package.json -------------------------------------------------------------------------------- /scripts/node-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/scripts/node-globals.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/index.js -------------------------------------------------------------------------------- /src/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/resolver.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/util.js -------------------------------------------------------------------------------- /src/util/commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/util/commit.js -------------------------------------------------------------------------------- /src/util/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/util/tag.js -------------------------------------------------------------------------------- /src/util/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/util/tree.js -------------------------------------------------------------------------------- /src/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/src/util/util.js -------------------------------------------------------------------------------- /test/fixtures/0a1690e0640a212aafed1824eb208ffddab1789b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/0a1690e0640a212aafed1824eb208ffddab1789b -------------------------------------------------------------------------------- /test/fixtures/0faccf822badf55f15fb0c3f4122fa13798f769e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/0faccf822badf55f15fb0c3f4122fa13798f769e -------------------------------------------------------------------------------- /test/fixtures/19f0805d8de36b6442e8c573074112ba72ad6780: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/19f0805d8de36b6442e8c573074112ba72ad6780 -------------------------------------------------------------------------------- /test/fixtures/42fd8d7404f5127314e248b2cbbe1423f12faeb9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/42fd8d7404f5127314e248b2cbbe1423f12faeb9 -------------------------------------------------------------------------------- /test/fixtures/4b271beec86978454072b632f382c6ccb3938a45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/4b271beec86978454072b632f382c6ccb3938a45 -------------------------------------------------------------------------------- /test/fixtures/4d5e7ac145aaf440600dd06a97e8cc65f8acd4dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/4d5e7ac145aaf440600dd06a97e8cc65f8acd4dc -------------------------------------------------------------------------------- /test/fixtures/5af4dc18899e8ac95904eaf2b4abf1a2ca5e1507: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/5af4dc18899e8ac95904eaf2b4abf1a2ca5e1507 -------------------------------------------------------------------------------- /test/fixtures/70a3540bd51658ab564806785d5516a4e89b6450: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/70a3540bd51658ab564806785d5516a4e89b6450 -------------------------------------------------------------------------------- /test/fixtures/7ffd1401f599c70364eda431d29363e037b2c92c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/7ffd1401f599c70364eda431d29363e037b2c92c -------------------------------------------------------------------------------- /test/fixtures/802992c4220de19a90767f3000a79a31b98d0df7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/802992c4220de19a90767f3000a79a31b98d0df7 -------------------------------------------------------------------------------- /test/fixtures/832b4a8497de78248f70c06e0f06e785a74fea4c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/832b4a8497de78248f70c06e0f06e785a74fea4c -------------------------------------------------------------------------------- /test/fixtures/88a72947d8b4f0ab7185389efcdd5dace4643e04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/88a72947d8b4f0ab7185389efcdd5dace4643e04 -------------------------------------------------------------------------------- /test/fixtures/933b7583b7767b07ea4cf242c1be29162eb8bb85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/933b7583b7767b07ea4cf242c1be29162eb8bb85 -------------------------------------------------------------------------------- /test/fixtures/9f358a4addefcab294b83e4282bfef1f9625a249: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/9f358a4addefcab294b83e4282bfef1f9625a249 -------------------------------------------------------------------------------- /test/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/README.md -------------------------------------------------------------------------------- /test/fixtures/a0f06ca3cdb1e6e7f603794ef1cd9f9867f85551: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/a0f06ca3cdb1e6e7f603794ef1cd9f9867f85551 -------------------------------------------------------------------------------- /test/fixtures/b1c46e7c32ff56e56a3da52be375348a664650ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/b1c46e7c32ff56e56a3da52be375348a664650ba -------------------------------------------------------------------------------- /test/fixtures/cf461f783732a8aa5f7d8679e112bd4c876aa19b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/cf461f783732a8aa5f7d8679e112bd4c876aa19b -------------------------------------------------------------------------------- /test/fixtures/d52e70c9e34ac03cdf77f46aec388c2f9574bd93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/d52e70c9e34ac03cdf77f46aec388c2f9574bd93 -------------------------------------------------------------------------------- /test/fixtures/ed19ea7ea03ecd036c653b9c4cba16df71424a60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/ed19ea7ea03ecd036c653b9c4cba16df71424a60 -------------------------------------------------------------------------------- /test/fixtures/ee048050d16bc428c4faef1074b740866ad553bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/ee048050d16bc428c4faef1074b740866ad553bb -------------------------------------------------------------------------------- /test/fixtures/f5227cbd32973ec90f48f2547e6fe16c80b92bd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/f5227cbd32973ec90f48f2547e6fe16c80b92bd5 -------------------------------------------------------------------------------- /test/fixtures/fa59b93c6ce9db82ce57de9046eb738e9f3c0952: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/fa59b93c6ce9db82ce57de9046eb738e9f3c0952 -------------------------------------------------------------------------------- /test/fixtures/fc80daf21bb484cfd42ad4ed4d17da48638199ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/fc80daf21bb484cfd42ad4ed4d17da48638199ea -------------------------------------------------------------------------------- /test/fixtures/ffef5350b6f8762cc6272b0255e968f50b6577ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/ffef5350b6f8762cc6272b0255e968f50b6577ed -------------------------------------------------------------------------------- /test/fixtures/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/objects.json -------------------------------------------------------------------------------- /test/fixtures/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/fixtures/update.sh -------------------------------------------------------------------------------- /test/mod.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/mod.spec.js -------------------------------------------------------------------------------- /test/parse.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/parse.spec.js -------------------------------------------------------------------------------- /test/resolver.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/resolver.spec.js -------------------------------------------------------------------------------- /test/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-git/HEAD/test/util.spec.js --------------------------------------------------------------------------------