UNPKG

save

Version:

A simple CRUD based persistence abstraction for storing objects to any backend data store. eg. Memory, MongoDB, Redis, CouchDB, Postgres, Punch Card etc.

53 lines (52 loc) 1.45 kB
{ "author": "Paul Serby <paul@serby.net>", "name": "save", "description": "A simple CRUD based persistence abstraction for storing objects to any backend data store. eg. Memory, MongoDB, Redis, CouchDB, Postgres, Punch Card etc.", "version": "2.9.0", "tags": [ "data", "database", "ORM", "it's not an ORM" ], "license": "ISC", "repository": { "type": "git", "url": "git@github.com:serby/save" }, "publishConfig": { "registry": "http://registry.npmjs.org" }, "main": "lib/save", "scripts": { "lint": "eslint -f unix .", "test": "nyc mocha -- --recursive -R spec -r should", "prepublish": "npm test && npm prune", "pretest": "npm run-script lint", "prettier": "prettier --write '**/*.js'" }, "engine": ">=6", "dependencies": { "async": "^3.2.2", "event-stream": "^4.0.1", "lodash.assign": "^4.2.0", "mingo": "^6.1.0" }, "devDependencies": { "eslint": "^6.1.0", "eslint-config-prettier": "^6.0.0", "eslint-config-prettier-standard": "^3.0.1", "eslint-config-standard": "^13.0.1", "eslint-plugin-import": "^2.18.2", "eslint-plugin-node": "^9.1.0", "eslint-plugin-prettier": "^3.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.0", "lodash": "^4.17.21", "mocha": "^9.2.2", "nyc": "^14.1.1", "prettier": "^1.18.2", "should": "^13.2.3", "stream-assert": "^2.0.3" } }