├── .bowerrc ├── .coveralls.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .nvmrc ├── .travis.yml ├── Gruntfile.js ├── README.md ├── app └── scripts │ ├── app.js │ └── services │ ├── crypto-offline-storage.js │ └── ng-offline-model.js ├── bower.json ├── dist ├── ng-offline-model.js └── ng-offline-model.min.js ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json └── test ├── .jshintrc ├── runner.html └── spec └── services ├── crypto-offline-storage.js └── ng-offline-model.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: nUFn3cVTxjYjqJWdQfWOt7LtThGvomId5 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.{js,yml,md,log} 3 | app 4 | dist/scripts 5 | test 6 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 5.3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/README.md -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('keepr.ngOfflineModel', []); 4 | -------------------------------------------------------------------------------- /app/scripts/services/crypto-offline-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/app/scripts/services/crypto-offline-storage.js -------------------------------------------------------------------------------- /app/scripts/services/ng-offline-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/app/scripts/services/ng-offline-model.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/bower.json -------------------------------------------------------------------------------- /dist/ng-offline-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/dist/ng-offline-model.js -------------------------------------------------------------------------------- /dist/ng-offline-model.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/dist/ng-offline-model.min.js -------------------------------------------------------------------------------- /karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/karma-e2e.conf.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/package.json -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/test/runner.html -------------------------------------------------------------------------------- /test/spec/services/crypto-offline-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/test/spec/services/crypto-offline-storage.js -------------------------------------------------------------------------------- /test/spec/services/ng-offline-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willmendesneto/ngOfflineModel/HEAD/test/spec/services/ng-offline-model.js --------------------------------------------------------------------------------