├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── jsonlite.bash └── tests ├── set_1k.bash └── set_get_delete_1k.bash /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | jsonlite.data 3 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/README.md -------------------------------------------------------------------------------- /jsonlite.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/jsonlite.bash -------------------------------------------------------------------------------- /tests/set_1k.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/tests/set_1k.bash -------------------------------------------------------------------------------- /tests/set_get_delete_1k.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodesocket/jsonlite/HEAD/tests/set_get_delete_1k.bash --------------------------------------------------------------------------------