├── .gitignore ├── .npmrc ├── LICENSE.md ├── README.md ├── package.json ├── src ├── index.js ├── main.js └── xyz-client.js └── test ├── karma.conf.js └── unit └── xyz-client.spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/src/main.js -------------------------------------------------------------------------------- /src/xyz-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/src/xyz-client.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/unit/xyz-client.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interop-alliance/gnap-client-js/HEAD/test/unit/xyz-client.spec.js --------------------------------------------------------------------------------