├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.yml ├── .vscode ├── extensions.json └── settings.json ├── .yarnrc ├── LICENSE ├── README.md ├── benchmarks └── reg.ts ├── binding.gyp ├── docs ├── enumerate-values.md ├── index.md └── releases.md ├── jest.json ├── lib ├── index.ts └── registry.ts ├── package.json ├── script └── upload.js ├── src └── main.cc ├── test └── registry-test.ts ├── tsconfig.json ├── vendor └── yarn-1.16.0.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/.yarnrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/reg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/benchmarks/reg.ts -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/binding.gyp -------------------------------------------------------------------------------- /docs/enumerate-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/docs/enumerate-values.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/docs/releases.md -------------------------------------------------------------------------------- /jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/jest.json -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './registry' 2 | -------------------------------------------------------------------------------- /lib/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/lib/registry.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/package.json -------------------------------------------------------------------------------- /script/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/script/upload.js -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/src/main.cc -------------------------------------------------------------------------------- /test/registry-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/test/registry-test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/yarn-1.16.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/vendor/yarn-1.16.0.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desktop/registry-js/HEAD/yarn.lock --------------------------------------------------------------------------------