├── .gitignore ├── .npmignore ├── README.md ├── circle.yml ├── docs ├── profiles │ ├── balloonDog.json │ ├── google.json │ ├── naval-legacy.json │ └── naval.json ├── testTokenFiles │ └── ryan_apr20.json ├── tokenfiles │ └── .gitkeep └── zonefiles │ ├── zonefile-1.json │ └── zonefile-1.txt ├── package.json └── src ├── identities ├── creativework.es6 ├── index.js ├── organization.es6 ├── person.es6 ├── personLegacy.es6 └── personUtils.es6 ├── index.es6 ├── profile.es6 ├── testing └── unitTests.es6 ├── tokenSigning.es6 ├── tokenVerifying.es6 ├── utils.es6 └── zoneFiles.es6 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/profiles/balloonDog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/profiles/balloonDog.json -------------------------------------------------------------------------------- /docs/profiles/google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/profiles/google.json -------------------------------------------------------------------------------- /docs/profiles/naval-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/profiles/naval-legacy.json -------------------------------------------------------------------------------- /docs/profiles/naval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/profiles/naval.json -------------------------------------------------------------------------------- /docs/testTokenFiles/ryan_apr20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/testTokenFiles/ryan_apr20.json -------------------------------------------------------------------------------- /docs/tokenfiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zonefiles/zonefile-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/zonefiles/zonefile-1.json -------------------------------------------------------------------------------- /docs/zonefiles/zonefile-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/docs/zonefiles/zonefile-1.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/package.json -------------------------------------------------------------------------------- /src/identities/creativework.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/identities/creativework.es6 -------------------------------------------------------------------------------- /src/identities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/identities/index.js -------------------------------------------------------------------------------- /src/identities/organization.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/identities/organization.es6 -------------------------------------------------------------------------------- /src/identities/person.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/identities/person.es6 -------------------------------------------------------------------------------- /src/identities/personLegacy.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/identities/personLegacy.es6 -------------------------------------------------------------------------------- /src/identities/personUtils.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/identities/personUtils.es6 -------------------------------------------------------------------------------- /src/index.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/index.es6 -------------------------------------------------------------------------------- /src/profile.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/profile.es6 -------------------------------------------------------------------------------- /src/testing/unitTests.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/testing/unitTests.es6 -------------------------------------------------------------------------------- /src/tokenSigning.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/tokenSigning.es6 -------------------------------------------------------------------------------- /src/tokenVerifying.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/tokenVerifying.es6 -------------------------------------------------------------------------------- /src/utils.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/utils.es6 -------------------------------------------------------------------------------- /src/zoneFiles.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blockstack-packages/blockstack-profiles-js-deprecated/HEAD/src/zoneFiles.es6 --------------------------------------------------------------------------------