├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENCE.txt ├── README.md ├── Store.es6.js ├── Store.spec.es6.js └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"], 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | /node_modules/ 3 | *~ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/README.md -------------------------------------------------------------------------------- /Store.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/Store.es6.js -------------------------------------------------------------------------------- /Store.spec.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/Store.spec.es6.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/json-file-store/HEAD/package.json --------------------------------------------------------------------------------