├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── open_an_issue.md ├── actions │ ├── check-for-go-ipfs-release │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ └── publish │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── bin.js └── index.js └── test ├── fixture └── example-project │ └── package.json ├── index.js └── install.js /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/open_an_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/ISSUE_TEMPLATE/open_an_issue.md -------------------------------------------------------------------------------- /.github/actions/check-for-go-ipfs-release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/actions/check-for-go-ipfs-release/Dockerfile -------------------------------------------------------------------------------- /.github/actions/check-for-go-ipfs-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/actions/check-for-go-ipfs-release/action.yml -------------------------------------------------------------------------------- /.github/actions/check-for-go-ipfs-release/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/actions/check-for-go-ipfs-release/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/publish/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/actions/publish/Dockerfile -------------------------------------------------------------------------------- /.github/actions/publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/actions/publish/action.yml -------------------------------------------------------------------------------- /.github/actions/publish/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/actions/publish/entrypoint.sh -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/package.json -------------------------------------------------------------------------------- /src/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/src/bin.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/src/index.js -------------------------------------------------------------------------------- /test/fixture/example-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/test/fixture/example-project/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/test/index.js -------------------------------------------------------------------------------- /test/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-inactive/npm-go-ipfs-dep/HEAD/test/install.js --------------------------------------------------------------------------------