loopback-datasource-juggler/package.json

48 lines
990 B
JSON
Raw Normal View History

2011-10-01 15:51:51 +00:00
{
"name": "loopback-datasource-juggler",
2.22.0 * Code cleanup in updateAll/deleteAll (Miroslav Bajtoš) * Return scope object from DAO.scope (Fabien Franzen) * Remove all usages of lodash. (Miroslav Bajtoš) * Clean up delete and update tests (Simon Ho) * Clean up wording in update/delete tests (Simon Ho) * Fix wording in update test (Simon Ho) * Properly support embedsMany destroyAll (Fabien Franzen) * Clean up update/delete manipulation tests (Simon Ho) * test: fix test failure in MySQL connector (Miroslav Bajtoš) * Improve test failure messages (Miroslav Bajtoš) * Fix regression in prototype.save (Miroslav Bajtoš) * Enable more CRUD remoting methods for embedsOne (Fabien Franzen) * Implement scope.findOne (Fabien Franzen) * use findOrCreate for HasManyThrough#create (Clark Wang) * Enhance id comparision for updateAttributes (Raymond Feng) * Enable custom methods on singular relations (Fabien Franzen) * Implement scope.findById (Fabien Franzen) * Fix updateAll callback in "transient" connector (Miroslav Bajtoš) * Memory connector returns updated records count (Simon Ho) * Add ctx.isNewInstance for "save" hooks (Miroslav Bajtoš) * deleteAll returns number of deleted records (Miroslav Bajtoš) * Use the correct way to iterate over an array (Raymond Feng) * DAO: Fix updateOrCreate to set persisted:true (Miroslav Bajtoš) * Reject CREATE with a duplicate id (Miroslav Bajtoš) * add tests for between in memory connector (Daniel B. Vasquez) * enable between filter for memory db connector (Daniel B. Vasquez) * fix #429 Multiple Models can't mixin same class (Clark Wang)
2015-03-27 17:03:08 +00:00
"version": "2.22.0",
2013-09-11 17:46:09 +00:00
"description": "LoopBack DataSoure Juggler",
"keywords": [
"StrongLoop",
"LoopBack",
"DataSource",
2013-11-08 17:14:39 +00:00
"Connector",
"Database",
"Juggler",
"ORM"
],
2011-10-01 15:51:51 +00:00
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-datasource-juggler"
2011-10-01 15:51:51 +00:00
},
"main": "index.js",
"browser": {
"depd": "./lib/browser.depd.js"
},
2011-10-01 15:51:51 +00:00
"scripts": {
2013-07-23 05:32:05 +00:00
"test": "make test"
2011-10-01 15:51:51 +00:00
},
2012-01-15 22:58:38 +00:00
"engines": [
2012-12-14 17:44:38 +00:00
"node >= 0.6"
2012-01-15 22:58:38 +00:00
],
"devDependencies": {
"bluebird": "^2.9.9",
2015-02-10 17:49:54 +00:00
"mocha": "^2.1.0",
"should": "^5.0.0"
2013-03-26 00:39:47 +00:00
},
"dependencies": {
2015-02-10 17:49:54 +00:00
"async": "^0.9.0",
"debug": "^2.1.1",
"depd": "^1.0.0",
2015-02-10 17:49:54 +00:00
"inflection": "^1.6.0",
2014-07-16 19:31:44 +00:00
"loopback-connector": "1.x",
"node-uuid": "^1.4.2",
2015-02-10 17:49:54 +00:00
"qs": "^2.3.3",
"traverse": "^0.6.6"
},
2014-02-17 23:56:56 +00:00
"license": {
"name": "Dual MIT/StrongLoop",
"url": "https://github.com/strongloop/loopback-datasource-juggler/blob/master/LICENSE"
}
2013-09-10 19:19:20 +00:00
}