├── .gitignore ├── LICENSE.txt ├── README.md ├── lib └── simpledb.js ├── man ├── makepackage.sh └── newversion.txt ├── package.json └── test ├── README.txt ├── keys.js └── simpledb.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | keys.mine.js 2 | *~ 3 | dist/simpledb.tgz 4 | node_modules 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/README.md -------------------------------------------------------------------------------- /lib/simpledb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/lib/simpledb.js -------------------------------------------------------------------------------- /man/makepackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/man/makepackage.sh -------------------------------------------------------------------------------- /man/newversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/man/newversion.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/package.json -------------------------------------------------------------------------------- /test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/test/README.txt -------------------------------------------------------------------------------- /test/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/test/keys.js -------------------------------------------------------------------------------- /test/simpledb.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjrodger/simpledb/HEAD/test/simpledb.test.js --------------------------------------------------------------------------------