├── .dockerignore ├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── copy_to_lib └── esm │ └── package.json ├── package.json ├── rollup.config.js ├── src └── JsonStreamStringify.ts ├── test-src ├── .eslintrc.js ├── JsonStreamStringify.esm.ts ├── JsonStreamStringify.spec.ts └── JsonStreamStringify.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/README.md -------------------------------------------------------------------------------- /copy_to_lib/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/JsonStreamStringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/src/JsonStreamStringify.ts -------------------------------------------------------------------------------- /test-src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/test-src/.eslintrc.js -------------------------------------------------------------------------------- /test-src/JsonStreamStringify.esm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/test-src/JsonStreamStringify.esm.ts -------------------------------------------------------------------------------- /test-src/JsonStreamStringify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/test-src/JsonStreamStringify.spec.ts -------------------------------------------------------------------------------- /test-src/JsonStreamStringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/test-src/JsonStreamStringify.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faleij/json-stream-stringify/HEAD/tsconfig.json --------------------------------------------------------------------------------