├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── lib ├── computed.js └── index.js ├── package.json └── test ├── .eslintrc └── test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | db.json 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/computed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/lib/computed.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "fullcube/mocha" 3 | } 4 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-computed-mixin/HEAD/test/test.js --------------------------------------------------------------------------------