├── .babelrc.js ├── .codeclimate.yml ├── .coveralls.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── api │ ├── README.md │ ├── classes │ │ └── jsoncache.md │ └── interfaces │ │ ├── ideloptions.md │ │ ├── ioptions.md │ │ ├── iparser.md │ │ ├── isetoptions.md │ │ └── istringifier.md └── migrationV6.md ├── package.json ├── rollup.config.js ├── src ├── index.ts ├── interfaces.ts ├── lib │ ├── config.ts │ ├── flattener.ts │ ├── jsonCache.ts │ └── jsonCache.types.ts └── utils │ ├── key.ts │ └── type.ts ├── test ├── lib │ ├── flattener.spec.ts │ └── jsonCache.spec.ts └── utils │ ├── key.spec.ts │ └── type.spec.ts ├── tsconfig.json ├── tslint.json └── typedoc.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: PDLr1ny57OXgQj5LfBdxTqofVtCLuBA9w -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/README.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/classes/jsoncache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/classes/jsoncache.md -------------------------------------------------------------------------------- /docs/api/interfaces/ideloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/interfaces/ideloptions.md -------------------------------------------------------------------------------- /docs/api/interfaces/ioptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/interfaces/ioptions.md -------------------------------------------------------------------------------- /docs/api/interfaces/iparser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/interfaces/iparser.md -------------------------------------------------------------------------------- /docs/api/interfaces/isetoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/interfaces/isetoptions.md -------------------------------------------------------------------------------- /docs/api/interfaces/istringifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/api/interfaces/istringifier.md -------------------------------------------------------------------------------- /docs/migrationV6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/docs/migrationV6.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/flattener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/lib/flattener.ts -------------------------------------------------------------------------------- /src/lib/jsonCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/lib/jsonCache.ts -------------------------------------------------------------------------------- /src/lib/jsonCache.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/lib/jsonCache.types.ts -------------------------------------------------------------------------------- /src/utils/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/utils/key.ts -------------------------------------------------------------------------------- /src/utils/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/src/utils/type.ts -------------------------------------------------------------------------------- /test/lib/flattener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/test/lib/flattener.spec.ts -------------------------------------------------------------------------------- /test/lib/jsonCache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/test/lib/jsonCache.spec.ts -------------------------------------------------------------------------------- /test/utils/key.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/test/utils/key.spec.ts -------------------------------------------------------------------------------- /test/utils/type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/test/utils/type.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/tslint.json -------------------------------------------------------------------------------- /typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashBabu/redis-json/HEAD/typedoc.js --------------------------------------------------------------------------------