├── .coveralls.yml ├── .github ├── dependabot.yml └── workflows │ ├── index.yaml │ └── publish.yaml ├── .gitignore ├── .npmignore ├── .prettierignore ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── package.json ├── rollup.config.mjs ├── src ├── decorate.test.ts ├── define-metadata.test.ts ├── get-metadata.test.ts ├── get-own-metadata.test.ts ├── has-metadata.test.ts ├── index.test.ts ├── index.ts └── metadata.test.ts └── tsconfig.json /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: iHctMRQ1rYAUMqiyQH6PITDEQXvwaTknc 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/.github/workflows/index.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | **/*.test.* 3 | coverage 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/decorate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/decorate.test.ts -------------------------------------------------------------------------------- /src/define-metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/define-metadata.test.ts -------------------------------------------------------------------------------- /src/get-metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/get-metadata.test.ts -------------------------------------------------------------------------------- /src/get-own-metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/get-own-metadata.test.ts -------------------------------------------------------------------------------- /src/has-metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/has-metadata.test.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/src/metadata.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/reflection/HEAD/tsconfig.json --------------------------------------------------------------------------------