{"_id":"mongo-aql","_rev":"65-e544f980f802d7b5511437e0d0a9b30c","name":"mongo-aql","time":{"modified":"2022-12-02T06:28:32.360Z","created":"2015-11-08T08:00:01.094Z","0.1.0":"2015-11-08T08:00:01.094Z","0.2.0":"2015-11-15T22:06:24.858Z","0.2.1":"2015-11-16T02:03:44.901Z","0.2.2":"2015-11-16T02:27:38.523Z","0.2.3":"2015-11-16T02:33:44.739Z","0.2.4":"2015-11-16T03:44:08.865Z","0.2.5":"2015-11-16T06:37:36.806Z","0.2.6":"2015-11-18T01:43:39.142Z","0.2.7":"2015-11-18T02:20:19.941Z","0.2.8":"2015-11-18T02:24:53.203Z","0.3.0":"2015-11-18T14:38:56.509Z","0.3.1":"2015-11-20T07:46:51.563Z","0.3.2":"2015-12-02T01:43:46.817Z","0.3.3":"2015-12-02T02:10:51.835Z","0.3.4":"2015-12-05T20:39:30.602Z","0.3.5":"2015-12-06T20:01:55.338Z","0.3.6":"2016-01-01T06:11:57.752Z","0.3.7":"2016-01-01T09:57:48.581Z","0.3.8":"2016-01-03T02:37:06.397Z","0.3.9":"2016-01-05T04:02:26.221Z","0.3.10":"2016-04-21T02:19:21.673Z","0.3.11":"2016-04-25T11:31:59.682Z","0.3.12":"2016-04-29T02:01:57.794Z","0.3.13":"2016-06-06T19:48:31.655Z","0.3.14":"2016-06-08T02:11:40.547Z","0.3.15":"2016-06-08T07:37:40.708Z","0.3.16":"2016-06-11T19:53:24.832Z","0.3.17":"2016-09-02T18:49:37.115Z","0.3.18":"2016-09-20T10:32:36.018Z","0.3.19":"2016-09-22T13:50:39.196Z","0.3.20":"2016-09-26T02:46:34.793Z","0.3.21":"2016-10-03T23:55:11.188Z","0.3.22":"2016-10-15T23:37:16.588Z","0.4.0":"2016-10-28T15:37:10.341Z","0.4.1":"2016-11-01T08:40:36.285Z","0.4.2":"2016-11-16T02:25:17.854Z","0.4.3":"2016-11-22T11:22:38.021Z","0.4.4":"2016-11-27T13:52:37.443Z","0.4.5":"2016-11-30T08:42:11.710Z","0.4.6":"2016-12-02T07:43:38.025Z","0.5.0":"2016-12-07T15:36:39.087Z","0.5.1":"2016-12-08T15:57:09.758Z","0.5.2":"2016-12-14T07:18:13.765Z","0.5.3":"2016-12-16T08:03:59.373Z","0.5.4":"2017-02-22T00:07:11.912Z","0.5.5":"2017-05-02T11:38:14.412Z","0.5.6":"2017-05-29T21:33:22.808Z","0.5.7":"2017-06-26T03:12:49.267Z","0.5.8":"2017-08-01T02:02:31.281Z","0.5.9":"2017-10-15T05:47:29.915Z","0.5.10":"2018-03-05T20:36:41.430Z","0.5.11":"2020-05-10T08:20:54.076Z","0.5.12":"2020-05-30T03:36:11.024Z","0.5.13":"2021-01-31T16:24:44.752Z","0.5.14":"2021-07-02T11:52:36.502Z","0.5.15":"2022-06-14T20:14:18.445Z","0.5.16":"2022-06-14T22:43:49.458Z","0.5.17":"2022-06-14T22:44:51.269Z","0.5.19":"2022-06-14T23:49:31.801Z","0.5.20":"2022-12-02T06:28:32.293Z"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"dist-tags":{"latest":"0.5.20"},"description":"A mongo-like interface for aql generation","readme":"# mongo-aql - JSON to AQL\n\n##Install\n\n```\n$ npm i mongo-aql --save\n```\n\n##Usage\n\n```javascript\nvar builder = require('mongo-aql');\n\nvar q = {\n\tfoo: { bar: 'baz', bar2: 'baz2' },\n\t\"$limit\": 10,\n\t\"$skip\": 100,\n\t\"$orderby\": { name: 1, name2: 1 },\n\t\"@city\": \"cities\",\n\t\"@like\": \"likes\"\n}\n\nvar res = builder('users', q);\n\n```\n\nResult:\n\n```js\n{ query: 'FOR u IN users FILTER u.foo.bar == @v0 && u.foo.bar2 == @v1 LIMIT @v2, @v3 SORT u.name ASC, u.name2 ASC LET c0 = DOCUMENT(@@v4, u.city) LET c1 = DOCUMENT(@@v5, u.like) RETURN merge(u, { city: c0 }, { like: c1 })',\n  values:\n   { v0: 'baz',\n     v1: 'baz2',\n     v2: 100,\n     v3: 10,\n     '@v4': 'cities',\n     '@v5': 'likes' },\n }\n\n```\n\n##License\n\nBSD\n","versions":{"0.2.0":{"name":"mongo-aql","version":"0.2.0","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"ce078315e4071848b88125152ab3d2a39edfca3e","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.0","_shasum":"d2809babc9a1f1bdc9d38894224e5f7a00fc8973","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"d2809babc9a1f1bdc9d38894224e5f7a00fc8973","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.0.tgz","integrity":"sha512-5+FfcsWOy5+SWUDGqftTZZHNlfUMR10EAG0bwxtTaJnbnKd11dGg7qLH8nsUU1QkXaizcjiRQ+s4+6A30CbPHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHVje0vrwV2cVDWtslPrOCYyewbavKiSrjcmyOUk9DU4AiEA1Y/OoAtoH+VS0lLo+5ZaG03ItlzW03J28an0xDRClco="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.1":{"name":"mongo-aql","version":"0.2.1","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"f3c18f0f482ccd0f1fbffa9c6b7f296b04dd22da","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.1","_shasum":"bda258b6144165194341ef9e25afdbf4b7b0eca2","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"bda258b6144165194341ef9e25afdbf4b7b0eca2","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.1.tgz","integrity":"sha512-IoZ68bWZgVchpZ1VfRw4gkZfJK4kBlXmQA8ezzeajRpvjL0mp+HF/wM3y+hsn5Ch3CcO48lo7iidP0qnLttARg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGttQbwY8FwLPLb2ZABjavO5AgG2I+tgDzKaIQ8atmlwAiEAn0z1fhGgl5JypznbAScgTDMXmp5mX45Pk61CbPUuXlw="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.2":{"name":"mongo-aql","version":"0.2.2","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"7b4df5acfe796854037ee1897e450a644a85b0e5","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.2","_shasum":"42655e3eb1ad406c63455339aad17311397bcd2f","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"42655e3eb1ad406c63455339aad17311397bcd2f","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.2.tgz","integrity":"sha512-HhyjNEBotBYQl1H47AG+r0k+uXVl7wNwofuQfv10cpiAcPVmHaPqBwES2bFgskCKwTqeYLAQMxEH33++SL7nFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBzgukqeJdf0r9ePsGirStvpRAFFdZAiWWpviu9HGYoZAiEAsy+gbXlNIqD0XF4qKjDhC1sspNvI+DfydW9fn3dLRYo="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.3":{"name":"mongo-aql","version":"0.2.3","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"1a5eb28654c5f0189f481ab842867b5a942aa59d","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.3","_shasum":"bbebeeb069cc3e0fe2be3ab25f569fc4c371df25","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"bbebeeb069cc3e0fe2be3ab25f569fc4c371df25","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.3.tgz","integrity":"sha512-xNTqlneKgkWLWo8YrcoqWaqMnmNskEHUJIUFeefIXLpGwPGS8cU/m3uGvU0guRC6Pbt7HMoiY4mHGThpYnsE3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGmwcD/qjJAvd51AYY2Cv7Rexr/JY4/0gh2tHzeu94sEAiEAh9gkes9bcMWPmMm0dpQaESdAbrzwDwAz6Z89sJgos/c="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.4":{"name":"mongo-aql","version":"0.2.4","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"ef692934dec16e410dc1542dd4cf7f60b81a3f48","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.4","_shasum":"b26341b495affb99b613265b02bab82c2260fb21","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"b26341b495affb99b613265b02bab82c2260fb21","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.4.tgz","integrity":"sha512-hccYZdhIQkmdkeZynq15cPYCuuIhoHBYiRUPzbsVXERnKFdfZNUgrptdgKNEMbi+4tf5343C9Ah24mbWZKk4CA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAg2TuTc9SBNa69fBddyzbIIkapiyY8v8vG3L1OR5qpiAiEA8fWYWJwO/AKwQNltM4CGJOOpHDLq1KQDzhcrwI5nXgs="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.5":{"name":"mongo-aql","version":"0.2.5","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"46ce16c9893529bd5b569b56a3f9883335061b95","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.5","_shasum":"e989b8a8af885c72020936120b672b67d07337d7","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"e989b8a8af885c72020936120b672b67d07337d7","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.5.tgz","integrity":"sha512-ibM+C5b0LrmfeiY7I8TB6lUQSCI5yE4cx25NC9T3iZpR4U80IIg6TrA5EB6nORcKOZWudnaY2W6tTEyJispnEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIET+XbEnWVKzKjCTVl9LrHZWzZ6sMX/RO+cypGdt+VC9AiAOoi/hRcsnOCXBkYQWsao4HAHKY7revrbXGzDByp2Q3Q=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.6":{"name":"mongo-aql","version":"0.2.6","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"48c2872aa92c7f1b249327259ca5d6f5c5fe338e","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.6","_shasum":"2e3f1530dbc9f8720fcf2537b2bc1066a094b9b2","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"2e3f1530dbc9f8720fcf2537b2bc1066a094b9b2","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.6.tgz","integrity":"sha512-ZvY3ibAoQxOqsVa8qJzVmPN8STvws4eqKg5zGhLFTQXDG6/TTFXV3TptgbbGpm2oWARlHKA1gEY4lpRmKevv4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+GwwjsXD0sc0UylJtlIeU2ejglgH6M41hPr11iMGiiwIgCxdcAy0yFmT36FPjsegdCL0iTfgPrwdFtY7iYp8c+/U="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.7":{"name":"mongo-aql","version":"0.2.7","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"cbec33e7537e1f86952af4c220b6d05b2a9b54cc","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.7","_shasum":"7901040ac0c84549b433017ee1cfdaf4091bc9a8","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"7901040ac0c84549b433017ee1cfdaf4091bc9a8","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.7.tgz","integrity":"sha512-O2ZnM0lrkf7wGuu9boGdyoIzkGII47bzyQGcT/T8yCgldycxrr2Dmjdvm7BuXVNgjJC8pKyqNyZPuFiAXruz0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCECmT56p/0Z/d/fb5L4SFjm9qZoR0WgSSNme+b74eyYgIgHmfuyUQkjjN2hXGzCz+DbaJn6RdN0g161A5GyNEkSqE="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.2.8":{"name":"mongo-aql","version":"0.2.8","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"228cadad5cad03796deadd84dcb457fdaddd424e","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.2.8","_shasum":"f48ac2affad96440a73c2231c0d84b0acad60fab","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"f48ac2affad96440a73c2231c0d84b0acad60fab","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.2.8.tgz","integrity":"sha512-kq3w0y0NMc0a03q7IXz/ecmmtKbBjfUAvXY0qXntKKPwDFK1QPJEN+yz2t8/rD/9OBjp51bJfyTnH9HA+So3zg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD98nghmn/wwXp0geuQhk0pS+DwiVyzCmFca22xox0VgQIhAI2MWj4df57+PbCk7Cmf0NR6Sq9mA1KmnTwWJqPguDkE"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.0":{"name":"mongo-aql","version":"0.3.0","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"667fdc69ce39a33df316441381259745fe14374b","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.0","_shasum":"2da8c6290e35b9bb3c839d9c424d9c77e0c6ff5e","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"2da8c6290e35b9bb3c839d9c424d9c77e0c6ff5e","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.0.tgz","integrity":"sha512-SsRoy4w8dm9kVMolAn7zpn2CsJ4Ap5ou514JGET663LxrNYLlJwETcVz/F7Ev691wSMg6S4lzaguoYLBnsng0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLBqgjXtLoslBobiLfneCdkWn75skWeTeL+Dl+SF2z2wIhAOVzW/RsnpcMTRD5SPEpwVH05krD75eDgWvlEN+P63Iy"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.1":{"name":"mongo-aql","version":"0.3.1","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"cb74574a08fe6f7b0cfbfa2ba7b09d9fefaceb9f","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.1","_shasum":"f74150211a573558e30a76aa4edf6eef6bd2ee25","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"f74150211a573558e30a76aa4edf6eef6bd2ee25","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.1.tgz","integrity":"sha512-rBKThXf5q1dcf1APNlXW1DH743rzM0DJnzjWamWms2ziEH/9VRQkrdLgBfcI0lQCbCt4DFG1T7p3apXR9BX5fQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGAws4Ljm+aeuX5Inpkp3rytw5gnucq30iBzsqkD7VzVAiEA2CyDsYes+iwFmsd/ftpa4tsxn8lsSQ07Gq0sHugjLdI="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.2":{"name":"mongo-aql","version":"0.3.2","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"57e31ce71748dda0449d0350d3c501647dbf2a3f","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.2","_shasum":"4dc4c26acf74cd5dc5c844a1e7ba9d825f028f6a","_from":".","_npmVersion":"3.5.0","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"4dc4c26acf74cd5dc5c844a1e7ba9d825f028f6a","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.2.tgz","integrity":"sha512-7/9d29pLG3kdFk75cJNxcS1HIzwHGlFX2V/NX9JhZsJsVd8L6Y6N5dvARQTknmx/j0J1YP/vAKn8VEBzKoZCvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCZIwkXp0uGhDl0bsy/WoZQYZWZ3ep3PlYBK2RZFeCtegIgH8dTFryjf5diR+mcG6o/nDVF//7McFlADPl6M0f8nFg="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.3":{"name":"mongo-aql","version":"0.3.3","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"c9574bfc6906517fd700918547b54498f172d10c","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.3","_shasum":"a66790ac967c4b74be505c74be743ee78559d6dd","_from":".","_npmVersion":"3.5.0","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"a66790ac967c4b74be505c74be743ee78559d6dd","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.3.tgz","integrity":"sha512-S8GLv3Dig9Z0K4epAzGjDhUygq+BLw3UBs2XnIzDdwWANeqiFUtEle1vheeGAJxHio4Wj0Pd+mRHgWAcCbeQKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGX2ebGWhAPu3U0cicTtz39OfKDbm+0muAqn31rOxfEjAiEAuZszuFU7AqZe2mCEIyrXZ0LB5a99nNN4jbaWiYGAVPs="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.4":{"name":"mongo-aql","version":"0.3.4","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"36a0caba37cb0121903bae8288827d33eb2b87c4","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.4","_shasum":"3d1d61a52aa1a35c6e240178916bff43791f0330","_from":".","_npmVersion":"3.5.0","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"3d1d61a52aa1a35c6e240178916bff43791f0330","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.4.tgz","integrity":"sha512-GzI8FJfYQTbtGmKDtz/opE6jRNJcQRAm+K3cGY21t+10f/XT8/Mw/lzTuEt4+gxWGwzXojWpw2Gjdm2vaNoONA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEiJF82XGmC70Jrv/3n7ltKB2mAoSQFyZ3N6Qrz2I8WQIgZG9XdhQV7/2JLdy/fOqu3Ad+CYtpb7GLDrrWyARBPR4="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.5":{"name":"mongo-aql","version":"0.3.5","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"765239919a9aa4075a756b4d34bad887aa8e16b0","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.5","_shasum":"95819d85d799724f0c6be1952dec97573f10a619","_from":".","_npmVersion":"3.5.0","_nodeVersion":"5.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"95819d85d799724f0c6be1952dec97573f10a619","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.5.tgz","integrity":"sha512-fC2mU3p+kqkJQGFaCbk5c/rGzJft9LsTIz85w16YFaVyKupX3RB+vG/cxSjNXVYUP8gGbauw2BkmM/tZriUKzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDoedjQJGTkeCo48IIUhiwmEkRZVEukYY6bTnGFEltKsAIhALRxlMbHkTw1ZMH97zfFHn0PBSuwoUltEEe3dPRGbrrU"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.6":{"name":"mongo-aql","version":"0.3.6","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"96233cd59cc8a400add1013bd3ca4d4fc102baae","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.6","_shasum":"0523a0ba88f224f41b26cdb4bc4fb20875a06df4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"0523a0ba88f224f41b26cdb4bc4fb20875a06df4","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.6.tgz","integrity":"sha512-34JTEptSf0tZHTFunWmeu9mv5TF7EIJ2zw99jTNYLtRsSNVldTdlkYH7ExRMBosmxj8Pcnc1zGiOHtoAUFwLpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAsF7RgVCFxBFh4W25iOKJvzcXXSisLj5aW/DBcipeFMAiEA3GWZAj0VZuNOGmB1XPjEErex11aOKTYQNWW/lIefeaQ="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.7":{"name":"mongo-aql","version":"0.3.7","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"067f42e94e7bd5515cd7443c4507650bd532cff0","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.7","_shasum":"58f3c5c7c5c1c02746696ec483e73d564181d7bf","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"58f3c5c7c5c1c02746696ec483e73d564181d7bf","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.7.tgz","integrity":"sha512-dLhMXXYWjvXNpEnfgNiOM76zXSaJ+KgucmKTYPVLgpLOU+bDxDuVqIoiAfCPaRayAStSup7cyuxeHTy7LdouHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA9ue0L6ZnsO9rs5fC4q99qThk7hLCuwuhUbgo4gMU/qAiEAkioHlH59A6ffBo7ES0o4eVW/skeB/SHjh8+2B2SmlN4="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.8":{"name":"mongo-aql","version":"0.3.8","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"browserify":"^5.9.1","gulp":"^3.8.7","gulp-clean":"^0.3.1","gulp-concat":"^2.3.4","gulp-jshint":"^1.8.4","gulp-mocha":"^0.5.2","gulp-mocha-phantomjs":"^0.3.0","mocha":"~1.12.0","run-sequence":"^0.3.6","vinyl-source-stream":"^0.1.1"},"gitHead":"7e974aa619511bed2e1faed3cff009b90f390b08","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.8","_shasum":"1406efb9298ffe6ba173b9631eb5c1bc350ed820","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"1406efb9298ffe6ba173b9631eb5c1bc350ed820","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.8.tgz","integrity":"sha512-b0cJm+BLKUAHbp5xzJaugf26fc7zRGc5uGsiAoLgtSYEAvukexw6e1goPOzUp7A+1A17SP6CKu7R4bNJXd/RYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmrMS7vkA8+ZEc07JIIrWyD1afiUmx/Vzu/NeolBT02wIgGaql/BjH/wppFBOjXqCr74zIop4THKg25zHQtLyEjAQ="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.9":{"name":"mongo-aql","version":"0.3.9","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"b39ae448fe9660442007a7735e2557d0dc6fadbd","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.9","_shasum":"03335a03a7039e51092f78cd98e3c03a05927886","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"03335a03a7039e51092f78cd98e3c03a05927886","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.9.tgz","integrity":"sha512-BLkY9jQIdPhGc3uc0AMERXbIInnr0PVdUPrcIWtxNQgdT8GXEBmeAHj1qy90Z3fqzLwjbPhV1fHKyg+1IxU1uA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAv9nDKpIZMt4qAn6+Egj9HBgiry1PnlG1tkWhlnMeaXAiAMeBo1AdN16j2tAFdBPCq+s0HWfox4efboDv1e7/u/+g=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}]},"0.3.10":{"name":"mongo-aql","version":"0.3.10","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"f27eaf164f588474c3f9a695a14c678c3e0edbb8","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.10","_shasum":"f9ca5a5c5e23e7ed5c6558353b0100cbafc73ac8","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"f9ca5a5c5e23e7ed5c6558353b0100cbafc73ac8","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.10.tgz","integrity":"sha512-yeE92WMh6cUCRiwxL+Wrul7JDbyQn8GXaIc8YCOI3WcRIYdBWM5HaL++b/4QNGI6BO2oAZ9bHgk6PgnR9zNxQA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDrLJi1frTviF+adDMj6UrciKtCG2r7+y1K6F58BQkFswIgL/T6xFFr8FYH+uVev5RTM2UdQTq0BjSXQP60X8ta9rc="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.10.tgz_1461205158989_0.09665688523091376"}},"0.3.11":{"name":"mongo-aql","version":"0.3.11","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"ca1b6a8fe3d3b6482fe27d7e0c0a453b332551cc","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.11","_shasum":"508f37138b712a8939f4dcb81ae19068e86d44d2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"508f37138b712a8939f4dcb81ae19068e86d44d2","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.11.tgz","integrity":"sha512-4rODZIXgfOZ8cyZgwjuCpNBmakKtWrAkjmHSOW9QqoOOWoX1Idj4/c0MH9g7eX71hme194+bycnPb1O5iMxj5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDmz7QVV+XxaQ2fuwENubxxcs4JkMDDo5V6KMh87DjioAiBCBH1tleFH0Ccpek1Ldg9rfJ7VL33j1VwjpyprmWZ3oQ=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.11.tgz_1461583917090_0.9712287522852421"}},"0.3.12":{"name":"mongo-aql","version":"0.3.12","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"c18c075090b13e2f4202123196703a12dd73e1f4","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.12","_shasum":"65f7f449d32ae8299d7b19ec372c79fa640c8dc4","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"65f7f449d32ae8299d7b19ec372c79fa640c8dc4","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.12.tgz","integrity":"sha512-NnUTad2HMRapWlMeyVy5zowmXCzKS7isLxAf71eAo55hpyCsvDVVvnlPoandPq2yAxLEVqrEj1K6939LHiizsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCvV7vicprDrrIHwnsAdAMx043kqr/qZpcCMy7fSHUKaQIgee9SRSnUqctWiZ2tPGBzekama03OO7KYSgV/G3772Nw="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.12.tgz_1461895316815_0.8088238306809217"}},"0.3.13":{"name":"mongo-aql","version":"0.3.13","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"4caf1397cf84fc2dfc7cf2d37054b175c398423e","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.13","_shasum":"f791d658f1ce39c4abefe18a0dfd5d0434840ed8","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"f791d658f1ce39c4abefe18a0dfd5d0434840ed8","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.13.tgz","integrity":"sha512-+PkxaTWpBfGKVzrnREOdz4wdctrRXLnY1VRa3J/OX/XyQA0m8J5HiJLYuj9WbbxH+MxTOd164Bl3njtaDdkuTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG6x+IGjYUhjCzWfJRryPvrsix9KeBfrgqAJVCK8mfr3AiBPoK9fvtk0mmeikzo7xpNM/8e7Cy4eq4CMi/vz27iCpA=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.13.tgz_1465242509381_0.7996429675258696"}},"0.3.14":{"name":"mongo-aql","version":"0.3.14","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"48d7edd40a9018bd07e078e53ee6b57f9715d249","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.14","_shasum":"171568ba34be659786f29e3bb6d163a9ee1fe254","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"171568ba34be659786f29e3bb6d163a9ee1fe254","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.14.tgz","integrity":"sha512-hrMiKLPKcpW6/kcfMNUldrrF2IE74idfiBC+L0ubAAw0kOk6Yq34iKaOOpS95jdTipG8S3t3OJm6o8+HLsdz0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnb2g4lPZI9pbC4QNhlq3jDBZTnSUQ7H8Z3t1S/OVo4QIgOzOzK7nDN2yTR58H/+uzyRg1fv0L5/j+vBMec/WcFu8="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.14.tgz_1465351898568_0.7169255393091589"}},"0.3.15":{"name":"mongo-aql","version":"0.3.15","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"39f659c1da30f93f99d9adab2f761c5d99412f71","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.15","_shasum":"8920c581cf52876df50f4eb39b7b6061d2730cc3","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"8920c581cf52876df50f4eb39b7b6061d2730cc3","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.15.tgz","integrity":"sha512-t3wt0hb/KGErgg0KoVftq9v8nl/LuCfFFoV+KBugPKTcgKJ+i6pN0PzyCZUhHcTO0cyX/qoFi3rfE7Eyr51q6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEtcNEvV8j/mMb3eio0QigHM2dz6YvFU1mQoxBSe3rHlAiEAz8AhR0XZbJu6KucXIbsfR9/rMEyCiAkKNTWdBxugPGY="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.15.tgz_1465371458753_0.5078360261395574"}},"0.3.16":{"name":"mongo-aql","version":"0.3.16","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"06aaa5595fb7aac0cffd1e7201f17ef7be7e6210","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.16","_shasum":"6a760edc4d205793e261a45f4e6bedf51a7cc3a1","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"6a760edc4d205793e261a45f4e6bedf51a7cc3a1","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.16.tgz","integrity":"sha512-QQy3Ugm37nGL5wczUjz5mB5UimehaWRt44QMlg/KgHTdcmSwbjdMo1n8wryDbgP9EgWcNT8Q4XdvZEDxPt9uMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHZOkrw/mYk6G55bJirYg0nSINo4ugpT6GXGFPgOShY8AiEAuZ7BEF+yYpXI3Dai26TUMIFu6e54GKY8cIX6hVhG5js="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.16.tgz_1465674802155_0.38017894164659083"}},"0.3.17":{"name":"mongo-aql","version":"0.3.17","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"2a00df51577681bd82953c57ac835296b33e2e0c","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.17","_shasum":"497cddc0d2146910e6e2bc2d731cdd892ea1b00d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"497cddc0d2146910e6e2bc2d731cdd892ea1b00d","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.17.tgz","integrity":"sha512-MhLYGhhCZCZ90GVVwGr/yNTkA3KbHh4AIcWeclOqmn84FvditR9Qo+E0x6qbgJSQzf/5ePGHIOWdL7vd2wY4eg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE9fY6DpOf+3Z9ni63/j/wmpRripjsIRlvvF7SC6G+cZAiEA15kbmHaRifjKUv6fAJ28pv8BeSfCPk4Wzt5x6GxN15w="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.17.tgz_1472842174849_0.19889285555109382"}},"0.3.18":{"name":"mongo-aql","version":"0.3.18","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"694d36f9328f496517e15fca8e7a66172b6a637d","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.18","_shasum":"a5534d5d8c0225dc75e50bd0152cb8fbfa8d57d7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"a5534d5d8c0225dc75e50bd0152cb8fbfa8d57d7","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.18.tgz","integrity":"sha512-NtSYH26qFQGGaFdM/bBPUVXK/7yj+4VhE3tvmeSchAY+/zDw5FvKMdb/Dw5zAo72wzj5G1jdTY9oG42PF8dpxg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrkWUZLObJ+dK4iGVd205z/nS+S/RnLPpM3wH2x7LosQIhAPNIbse4x4oxp4Uk3Js5+CcIaN0jX/sX1DgtLPNexMis"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.18.tgz_1474367553950_0.8126083118841052"}},"0.3.19":{"name":"mongo-aql","version":"0.3.19","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"a92b3781443d3c4d8cc9a5848913ce5cd1d94ff3","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.19","_shasum":"930465be52a76a05c33f22b589ef549157b80f68","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"930465be52a76a05c33f22b589ef549157b80f68","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.19.tgz","integrity":"sha512-pCKfWlGdk3aWQMuXHBBau1X3i71eKLpIDVyoT2mlVTOJt6wqqzu4py5DFElyEVTSM5Ke4x6J3qb0DXnkiAtvfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICiGJTrZN2MMvfRrH9tlijVGxE4O/QSRmnTG0uhZHHbuAiAG/3hL1Agza4bWDejx7bQdqDXEcmwEqKwtkKI2iUnjfQ=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.19.tgz_1474552237377_0.2941737005021423"}},"0.3.20":{"name":"mongo-aql","version":"0.3.20","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"cb4f5657757d89cb8dbc875b9a85e47dfdeff89b","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.20","_shasum":"be3f7ec4da77940036af862bfc563e99903cca48","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"be3f7ec4da77940036af862bfc563e99903cca48","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.20.tgz","integrity":"sha512-YJFhXlj01ZTPjJxWcC30kNiKr92IBH2gYm+VGrrrgLuT+EPsAOzFZTYc+pK3Qa4AiYO3pfSPg2y7cRX3FNXyWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICerju7ZDPA+56ftn4KZTliljDyDj/J7wo4RGn6enK1eAiAjqKKX0VXfhxi+yn+DODpjt+va2MOx5fIDEj1vmnoWTg=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.20.tgz_1474857992821_0.7206776835955679"}},"0.3.21":{"name":"mongo-aql","version":"0.3.21","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"30e59c0759eab1057ae28d6191dec8c2cf2dfdb2","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.21","_shasum":"4c1856de37bb8d91c989497d481e2f7f3b9c988c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"4c1856de37bb8d91c989497d481e2f7f3b9c988c","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.21.tgz","integrity":"sha512-7zpU/Q5Q6Ef2ZzXQemOyTHrCgHJogSFD84Tc5gPFVevCoFqtHySAOypJFUL95UhZIg7PBGdSkO76b2r20bAw8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCepFsAZ7gKanP9gsMfmgBKHI9UrKvIp/aflU+kDyIN0gIgeiNAhN1QWmZXTv9iz5WCOFYMMeltQs1HlG4Z1HtxYB4="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.21.tgz_1475538909089_0.7758839561138302"}},"0.3.22":{"name":"mongo-aql","version":"0.3.22","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"35911609afb834192f50692a94af5345d9a19757","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.3.22","_shasum":"9aec7f8cf9be76f7d6e4045f12cd7f2139395751","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"9aec7f8cf9be76f7d6e4045f12cd7f2139395751","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.3.22.tgz","integrity":"sha512-fzumqWqEoCt3RzVoj4vmJ6nFtM6sv9KMidB0QOq91ZnyEBhZPWHEyA4NgC33t5ZobWoskm7NNJCf85qfDBY65A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA670Qnif5mmHbKjcpLQi0tpnaPWSMkp7Bpis6xr/yzjAiBH/n0OyBoRVZNZewPb4gco/3sOyxrF+myEI6obuYW1eg=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.3.22.tgz_1476574634997_0.35558587266132236"}},"0.4.0":{"name":"mongo-aql","version":"0.4.0","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"3e181ec891eb706dc53dbfc0f04a33dd6510575e","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.0","_shasum":"f4c9c3e22e75bce1231c58372bdc970df996d9a3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"f4c9c3e22e75bce1231c58372bdc970df996d9a3","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.0.tgz","integrity":"sha512-oFejj39J9nN3lEdgA+J5eUTlDGVH/OiBaxgobB3GFQoC+I59sOF3hZRO7tyaSEGnHLfD360fN3H4AoMns1lGVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD43wAM01WZyh1xhLavAJ1QAqzBdxNcT4rvW/k/g/SFDQIgECiB4L3wxqDb88YnWEwgdJGX5MbjW2acayhhJ0OTnMU="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.0.tgz_1477669028380_0.8162719525862485"}},"0.4.1":{"name":"mongo-aql","version":"0.4.1","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"025e5b61d0587e6dacbae33bafd6b6bead5f8420","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.1","_shasum":"2326398bf0788672195d99dc69b60bec543e561c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"2326398bf0788672195d99dc69b60bec543e561c","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.1.tgz","integrity":"sha512-5mxJ8gnx8xYf5Q/gY784/nIfFMzRda603kdt6ywiJj7jaaAol+hsoolg/hF0vq03wo/G4/OLYWjTNfILew4Edw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGrUHwQD3vTbfVGslSLhMb7DmoAsv9Lc1mw/zB7s00cAIhAPmWkRvjf6UtiXuypR5Oe5pBSqFQcckzBeKbHUScSKeY"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.1.tgz_1477989635781_0.6040375360753387"}},"0.4.2":{"name":"mongo-aql","version":"0.4.2","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"fd55ee5976e824b3a5a0e3a020573d83d8b905f5","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.2","_shasum":"8ad95c81fed864f639a05093697befe02afdbee7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"8ad95c81fed864f639a05093697befe02afdbee7","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.2.tgz","integrity":"sha512-U/g+Ozjj2CqJKdEe0N+yS0aHpdO9BbsREnTo76Y4P183k40hv8YZDgBj2BYZE+/3egx+xIn9usGBzjmcQk/55w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC26JrovpYFk0yKc2AVfTZQNfQmD0neOwyWS0yysJqpHgIhAJqhVfXnnxgHSZvLtzFMgR3CJWpRXenU5mu2BpIeW+VU"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.2.tgz_1479263117271_0.1007355737965554"}},"0.4.3":{"name":"mongo-aql","version":"0.4.3","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"d077b58c8afd0148fa9f6cc1289dd0e5e99f680d","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.3","_shasum":"3bf6ed9a3cf002e3fb720e641058f8e66d9964a0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"3bf6ed9a3cf002e3fb720e641058f8e66d9964a0","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.3.tgz","integrity":"sha512-dTBWaDNt2p0LuKbO8URVHEDTo9SvjtPX4JpwopiYx5W1VZX5bWJekDf5qOLZ0tnCOwzaMXOZ+Ju9Jzsqg5UDzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHVLSU5T4GHXgBPYq1d2mAz7tYaKPkUpylYBRcSsiNYYAiAivMUMTZ5BkJTc75IOlqptV91ce3ouHHyOhmPKeJ0RIQ=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.3.tgz_1479813757450_0.8602097197435796"}},"0.4.4":{"name":"mongo-aql","version":"0.4.4","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"c7f8d5d8e4bec775e32e8ccd533820c5919fb6d5","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.4","_shasum":"3a2bd4d4954c09dde9741cb2b1a90aac7f0dbdac","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"3a2bd4d4954c09dde9741cb2b1a90aac7f0dbdac","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.4.tgz","integrity":"sha512-b6fdmJHZUhrFGqiM3ZXg6EMbh/PKmubOIkeM4nAsZdnmhh65g6RC5Rbey0N0VnCNrB+QLfxWWZY8+rJ+seZwcA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE42BVYpdEgxtNcSzhWgPIx8JMVUUkeIxaNjxxY0RB25AiByyWIS+kQcyC78TRdzkDsI7Ro/6YJt7VpBsVqpWMVqxg=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.4.tgz_1480254755120_0.03369190660305321"}},"0.4.5":{"name":"mongo-aql","version":"0.4.5","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"087eac5df2f0b75537785783ab5657ff513fb98a","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.5","_shasum":"14e8be5177257e0a23699049aacad8888e768500","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"14e8be5177257e0a23699049aacad8888e768500","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.5.tgz","integrity":"sha512-OqFDGW0NgpwGwNZd6toyLaGMApedX85XfKH1Qi8dEvg5+SDeV4nBsQpeDoplmKjHXGZVsvTDhPco92zue59Y5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1tk6WZQw5tTgJUs/o/DAjmSASBl2SixZP2h6o06GVcwIhAO1qsdPeTnoJQVRZ9gu1Fm2g/gsIpV24FfNXYqFKEvLr"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.5.tgz_1480495329863_0.4120954673271626"}},"0.4.6":{"name":"mongo-aql","version":"0.4.6","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"eb20d591cef89cfc3bb21549967709ad4fd2b8e4","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.4.6","_shasum":"7f75aef9d8b61f06f692d3bc80f8d95fa383470e","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"7f75aef9d8b61f06f692d3bc80f8d95fa383470e","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.4.6.tgz","integrity":"sha512-VQ+odytiRknTQB5mS++bG3aJP3a6g2zTBN98XZrvripHOWsGOkTB8rAdyPf7zOEEjYmliHtu7RgOmwHZyMw4Ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvvkkoCmeZTGloFV1pi+oRH6L+mNeLqd0EfDkknI7bkwIhAJSg1CxK9E1eHRcg0TAKF6u5NsuzKyrBePx3oq8Syez4"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.4.6.tgz_1480664617491_0.9136802388820797"}},"0.5.0":{"name":"mongo-aql","version":"0.5.0","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"53584a7d0901c582f9cadf54c3efeea690368535","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.0","_shasum":"232ddd6af74a74e8a185c30ea1574f93b6b4012a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"232ddd6af74a74e8a185c30ea1574f93b6b4012a","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.0.tgz","integrity":"sha512-NZstgaJiBrzKPf22PWbmA9yrhJp8Q7YwkP0zixGNZXD3dSIuuzIxlffUf9hvcYG8Jc/F7gFlffhVEFs2jqczLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/XsYrDmujbQ5sQPNdFyYKO+HQLxJ8q1pK9YvYC366BgIgbVs9Kim9JX5+NoRki/Dkr/whbHJQ1jZWPybQo0QkhLs="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.5.0.tgz_1481124997151_0.2733098703902215"}},"0.5.1":{"name":"mongo-aql","version":"0.5.1","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"cfb193294c5234de00eef3c94d8347d53104a9fd","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.1","_shasum":"3364d6d346e652be980d6e970da6e70c8bebcc23","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"3364d6d346e652be980d6e970da6e70c8bebcc23","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.1.tgz","integrity":"sha512-v+GWCz8C7kezFFQp4wXrIuz90BCpyodO2EMQoGSuoVQwoLUdVzAMAH7Aq++tavarQPH+dZ549+X0AsIt1KTDJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICVRQUBCMlaqIxDQoJeT4i3H5wf6tRlKgafzE8zvHRLJAiEAgtACTQ7H9P4cUFM/V1x9ioc13JHK7zDGZ+jNeA/hsSE="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.5.1.tgz_1481212629180_0.8815590897575021"}},"0.5.2":{"name":"mongo-aql","version":"0.5.2","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"512cfbc234babc7cb7cfbe660a608e3fc0665cd1","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.2","_shasum":"042bf41f58bd28ea17cd5e1d51ecbe9bfabdc1d8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"042bf41f58bd28ea17cd5e1d51ecbe9bfabdc1d8","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.2.tgz","integrity":"sha512-hbL+RN6vRq14y793CSUP4wMxwIXPE8ZyLtaLyTWrtmovfiNEnDuL42UpEpiFBain8/6wlFPWlgWSY2rpK57+hQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/w5R5qYeG1zE2F+v+dQ6t/qdN0vnpTc1JZKxjL97xHQIhAOnkl9+OyFa66mVqkuSML+C3hKxbMXY0xvQM3mkor8NX"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.5.2.tgz_1481699893117_0.5610772564541548"}},"0.5.3":{"name":"mongo-aql","version":"0.5.3","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"ce8bf9cc4930e646f7ed1e0977a5659c54962a2f","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.3","_shasum":"98469b9681a8cd7a60ebb6ed58def3a95e6a3736","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"98469b9681a8cd7a60ebb6ed58def3a95e6a3736","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.3.tgz","integrity":"sha512-BD5Z6eek6S1FcF+10tLPftHxOwyhPriJwULB/GsOBxF8L4n9YpdfygeN2wTevOXRTFCzRTJmX4mNfwu5/kuEOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHuUMIre1tRzMDAKj1/kccoxS2ZLHYDhz5SNAuaP9mSwIhAI+jCzv1hqIwzmriXaCl8A2JOd9dMViw/ugfj8PEC7NO"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.5.3.tgz_1481875438816_0.008687072433531284"}},"0.5.4":{"name":"mongo-aql","version":"0.5.4","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"33140892b96cad003ce81f8e76a698140515502d","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.4","_shasum":"a886c6d1a38f63362e3485884c6e0baf39b20309","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"a886c6d1a38f63362e3485884c6e0baf39b20309","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.4.tgz","integrity":"sha512-KL3xoqhgssiUMcHnyaAxFNehgu/u2ePinAVCkDKHxPArJ5rcmb6tP5j0hA0SpHlYLsBfGCeKsWhIuAT8h7JMHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH6eDejSps8iW7KYXCwBZpEV1F/2vLNetUQD5Hzpp5Q0AiAs0nPZbCrG2JYkiONYwlnJtpv3REsoA2XWG9GBV6/RmA=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mongo-aql-0.5.4.tgz_1487722031300_0.9774604337289929"}},"0.5.5":{"name":"mongo-aql","version":"0.5.5","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"a44455b50f91110205190533a539358051e378b5","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.5","_shasum":"2c5ab0f27f9c6fd3c65c6820667117fcfc78c469","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"2c5ab0f27f9c6fd3c65c6820667117fcfc78c469","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.5.tgz","integrity":"sha512-NpNPL6EFCmnOrEPozQJeF6ekxBTYzFNIGys8pD9lVe1wXHBf3EnZgW8WVNdgZ3CBGImPFGi/cKhQnRnTRyAvWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDz0S4kvorEbaDe9Jvxn5L1zBZ81/WkEN0+OIcbzJnBDgIgFSqbHJa1mojErqWBcjR9Lu0KCnguyTiBTtJOYOR0xDc="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mongo-aql-0.5.5.tgz_1493725092473_0.6180974161252379"}},"0.5.6":{"name":"mongo-aql","version":"0.5.6","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"6fa98c21fff0ec10519ba1931567ad567a419bee","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.6","_shasum":"70550fe18012c561144bd1c44c048117cf7e72fc","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"70550fe18012c561144bd1c44c048117cf7e72fc","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.6.tgz","integrity":"sha512-KD8XcAae4KpijI5JfeERyH7pD+JGU1m3lCVD9b7YdscU1TOROpd/V7I5q3m8N/26FZop26QenhEJqAppp2Epyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDJZLGZHn9ZLe4cv7zJVkkIiGL1muy42B75Wd86794o1AiBZkXrAzpFWiHWNxVYLF7zzt3IjatYCXzv6zVK9tVMFag=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql-0.5.6.tgz_1496093601701_0.6098901897203177"}},"0.5.7":{"name":"mongo-aql","version":"0.5.7","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"cac3fb16bcd979ea0af0a483e49c7a0dfd58e9a9","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.7","_shasum":"8b3f0fb65bc26dc9f27675b8cf420ebd3bc33ba9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"8b3f0fb65bc26dc9f27675b8cf420ebd3bc33ba9","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.7.tgz","integrity":"sha512-sluSTrgRONwI4M2Iz0db9RTz75NaXrHmoB7whRrm3bG3IJ1TsHpxI6a6G/Odsqmp6f52CQOyfoEmvMPiJfJQew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLfzO3MhZsGzXcv1CdT80Fh9AhnJ6/Y+ZwkTl0gLcsdgIgCs2yM98oGdr1ozlqzMen35A58fAxLdxVa4yQfTwGCXM="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql-0.5.7.tgz_1498446768188_0.6521938131190836"}},"0.5.8":{"name":"mongo-aql","version":"0.5.8","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"fb9ef418b055dcc65c2a8a46d9d512960f53b9d3","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.8","_shasum":"6eb08d2315ac9519f27374a4bf7a3df9a975e4f8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"shasum":"6eb08d2315ac9519f27374a4bf7a3df9a975e4f8","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.8.tgz","integrity":"sha512-tRm1ANtxEP3yl0wqa8ai/PiDv9BhS3kIzqYUISc+9fPPJ6z/jhoK0CpTl8xPs2ZaepTwezw+jlsk5C0x/si8fQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHio4MTfHfC9yMmmdw6DhH4Pt8jubCMv63pH6Z4tIIuQIhAO2RK5lDyzD04q7pBT0v7aEeqHWezq/pSsGuD2USNkWq"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql-0.5.8.tgz_1501552950170_0.09147626580670476"}},"0.5.9":{"name":"mongo-aql","version":"0.5.9","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"761e77a95709d612764eeb7416658c5c745aba48","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.9","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"integrity":"sha512-F0bnmDUJSaSpewiRR9jBvjJMKfTOWw2FaWuQZXCC5yQ6HCQaK64SD2muTglUhUB7wOGG+hYKiDj1B5vWqK4SrA==","shasum":"aa06309d4d393e694e7096abb2eda0cfa1f0e62e","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.9.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFavakzao/J8wGJdTYx4rVixOqJWbNz3DpQKlSHYLqT2AiEAvIEkfnXl9Vwwe2qeMOEIe9txnkL7ucA7dsmGfJaYIvk="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql-0.5.9.tgz_1508046448801_0.4600746491923928"}},"0.5.10":{"name":"mongo-aql","version":"0.5.10","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"0baedccd6a298272475846baf4314de7951aac19","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.10","_npmVersion":"5.6.0","_nodeVersion":"9.6.1","_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"dist":{"integrity":"sha512-zWdUmSKEG1ZSFPXCjdscycFQPTWdDM3n9BiGArUepQcC3LXwCfGYxx1wRurzlIxipCiijdBmIc/a38LMEjFf2Q==","shasum":"afa6f53bba72bfef2f2f24acdc782b792ce9c78c","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.10.tgz","fileCount":68,"unpackedSize":144738,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE2EQmCrInEF55oRQp5SiaNoFja+DPyRT66RfWENHKFuAiEAjUS4N6JXm3nUhCw528Cfnt7/G0xopDOJDYDyix04jgw="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.10_1520282201306_0.46245355277492295"},"_hasShrinkwrap":false},"0.5.11":{"name":"mongo-aql","version":"0.5.11","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"c90819ac3302485535c448a318923e2a408d0f04","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.11","_nodeVersion":"12.16.1","_npmVersion":"6.14.4","dist":{"integrity":"sha512-X7yzSRVfOTbyALsVWws6T1jIPirQeLJDcmaxjVijdrTsllq/7F0cg903Cjw+pyOIW04xv7cWB+JRO2nsbaBlYg==","shasum":"b18f94bfa9f81a809bf75732442ea9d38784308c","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.11.tgz","fileCount":69,"unpackedSize":145344,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJet7lmCRA9TVsSAnZWagAArcsP+wate0gfnv3F+noW9c7i\ncIjiLo59tY3NU1FA8hNxRQvi1HJpOtFh3fSEO3SUSInC2ha2q810dvv2PW0s\nuXJv8RIowI2ClLTAe/rsE2DPFCNh5h4wsZThUUPVU7UCVEboYAZaMI+NwZ4h\n/p39d3xzS0FaH+9VTiGCZ92sdbMoX7V3OcND4yWxJRjGY3lXuobywMr1aTwR\nIk/WvmiY1WG1derqz/MJanc6sMUfhMC9gIq7kOjiTJguYNN6L01E9vbKCknb\nKiOtma9tkL4NGX3s/jAPK46WuvIXUiPtURPLB8uHHYqz4ZPF95C3j4vujzZx\n5dxZTMpLiYRudPurvooyMFezsEtoMYuMWnxalHsSXe1yTHZZK7U/GX3zv2me\nFC/SaKw8fdkvJTvwt48kLvOOgPELRe+HdCrkCJW8hk6UB5zW8jo71BUW6u13\nKDHn4OJTa80zcS89etmdnCQWDrzLKqhXphDUQR1TLVX62p8q5+1Q9udN74pq\nKumilst/W/4Ds/4SatDGeSgz38cg+owIn7TFo234Xw8SECGmFSjsgMYyh0+U\nnsaQ/GEFoaekv1mc5sTnEWjte1RCKQXLtfu8xMgIpWBm3vIcrikPkR17Fa50\nFtbxKPxYTrB89/nIEd1adIygfw1/x+CadRlu/uUDkwPY7J5f6wakzDkck1eH\npEZ9\r\n=1BSg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDiDIn9p0lFR/XfWCBpnFxVVS89+2QtIgvSrqqB375CQwIhAJ6GBarb5I+XLqO5ZfQDqUTNfMJDU3/txP+3geOuj5Ij"}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.11_1589098853970_0.788531068790117"},"_hasShrinkwrap":false},"0.5.12":{"name":"mongo-aql","version":"0.5.12","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"7182d53af8a516961135cd149d213b85195b565a","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.12","_nodeVersion":"12.16.1","_npmVersion":"6.14.4","dist":{"integrity":"sha512-W2HYhgOmsOi9rBqYiiItarGY1sgAT/9PYq1bZOk3cEHmc5Vy9lncxdrJDqgIgv9yvOnJ3GE0U5/AgiXtrmrjGQ==","shasum":"142a82088bc7c383143ad9f465f280b3e606080a","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.12.tgz","fileCount":68,"unpackedSize":145522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0dSrCRA9TVsSAnZWagAAYf8P/2vJf1rRq0znXs7bkNCG\nn52m57RdAwFoEz7oEPAu5Yro5cUKfXy1/tO53Y+068oshWqFIUBb3mIg4yZT\nuyP+ICXM619jt8C7Pzf0ufExCk9pVe9+g1YI0pNPEE6qQXDioXIUVZvxxnlY\n8lQ0Bhaj4fbhXfrHMiXxm1wVLY+HQIvEJC8I403066ls1LDIjEyslprDGHFO\nxYO1vr7gd7nYdZv8p/XlBZ/yfZCUs/dORoP8htFByhSy3FEHCc5CE0xKXfuw\n2KT7OAgGrQZcnUVCAg8TERwAujbx2bwpfDbFhEskR/B4ElFxDSyAGzVqTFvB\n1sheEnB+o2JHvmDPX9BJ9BADs+6TP8dnhqOVJ+OCi5RKTeKmYpH8opMyDwQp\nPCJNrZFPBQ3ie7HE8+oyy19qFuXyWuYACPbXMIDa8ZNa8vbZUvsTrDkhF1MZ\nr8xR+vU2TcGHPvImypR8lyBYwrLH5zQ+uRORavMTFc8PqRKM47TBSfrwV7Yf\nkijimd6SBj1HnGTEi7yYeDtzoTGdb01969twrBIZMWPgdM/v5OMPH3ZfcxQ7\nQutazyxavHhabJ/mkhhTWYoaM9d5GUKjgjXAwPeGpQ8XfIPpYX/6Ob9RxqKA\nYHcJssi3MRm4JHdAPYg8ZJ+MVdFYDaKLTdOdHn/XUOrEiUuSxW7BaXfgO8Ku\nrFMP\r\n=LJQ2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF2RzmzCv2wzt5Q/8X5ecJgnwHHxbp/Fc4oT5noXNKkeAiBnKQxu5VcybjV4AtcD4MzRWERubg5aPUl9M3VTQKXg4A=="}]},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.12_1590809770894_0.7281710149935074"},"_hasShrinkwrap":false},"0.5.13":{"name":"mongo-aql","version":"0.5.13","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"7cd7efa356d487f34fffe09876a88e710509df9c","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.13","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-KgyTMh/VzKN5RNGIuw1bXJFNkK9OJZboH77M/5YCopENQ10up2haobn790CZX4eHjB/87ruzZzsxv2tPNhg7fw==","shasum":"550a64836237eb01c60b98046a763b981ac90b49","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.13.tgz","fileCount":68,"unpackedSize":146031,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgFtnNCRA9TVsSAnZWagAA3BkP/0hDzOGE4xLX8cj57JBq\naibsr1nbqXN+F4jAPFiuvwtD9cZ0RV0168gybC5vuK7u4rWR0dTRZ2XH6uQ6\ngw1qJRW2TkIkZXOK5KXUtsbozDVLd8Pir29MzrhoMEr89tw2rY5QoogShh6f\nRY+TUePwAkcFYgAV2J31ovyyOEXBhgH3naXEoQUrlC4G5ei4DuCVZXFP0J+r\nFiiPTwsDdRxWLfgcwUrGuj4xR6YmPGVxHvflRa8CqeE1iHTGC+lymcj1hSWV\nRX4b0zBfkBA7qR2l+vEYduprRNnVXHaokplGAZUsSNWzHekGLhfkr6txlVLq\nQ+4WwtzzuXcCdIqrOpQwqF6GkZ2P7iSGh5biTO4tEbYBoiHmDAPASpzQ6b4Y\nUSQAfvK9sjlA1V3ipcriMzL0nmrvxhBeuFU1r1hPy01DZiOMjnkWaJmqeVV7\nCSLFoK6315VGGOdjRpMkro66SYmuKlHJtVg/jRFcYUGnPLlUPjSCa96VHWf2\n3/HS7MRcgbRebHtJa0cMxpiJ5M9PO9RanP5zMg2esZnjsrtwimWLoVncjSZn\n/UfzPzYBymI8F4Gdi5lf1ri0uQDjm/Ee26E6vXJRTMFU9q27YlzG7ioZ9Vg+\n6tSuMZcl7rYNr0k140LGbPd0eSFL5sbZcFcbu7UiQLRk+G7dz7vKPsJ09gee\ncA03\r\n=N0GY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICq/BNz5oL3XfQy1Jfn4muhAXNeabpmKUfyCIXHVhhjSAiBubq7vgeY0meqINngcL367yLbjaTW+RA2hi6Zt7ggBgg=="}]},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.13_1612110284546_0.04298433275459135"},"_hasShrinkwrap":false},"0.5.14":{"name":"mongo-aql","version":"0.5.14","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"953192dfe8348e5fecf3f1b75f63a42f06c21db9","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.14","_nodeVersion":"15.14.0","_npmVersion":"7.7.6","dist":{"integrity":"sha512-hZkb8JTwxnAtRptTRPG2Sr7GzxzINuqWplsEGVb3mCIzwcpkMS78FygAHXd3b+JExdx/gwLqmjFX499SMxrRzA==","shasum":"c1760e68fc1f0b10cce8d4e2ce56bf6d56e4454f","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.14.tgz","fileCount":69,"unpackedSize":146663,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3v4ECRA9TVsSAnZWagAAM7EP/jwlr7vT5T6N2zYU/csB\n3Fxo/JSe7/gH4YfNYa/GGh3qeipQBfXEjYNrBkvEQgJHuakIrPGKtPwpPfdD\nt4okw6IBmCr1jNAULQKXiqXDHguyrbnFx7v+r/DU359QhutoEpHXnuxOmisT\nEHyq2W0L15q0Wz+RbdcEpFidTLLvFX1kEuuGGfyFgV1fDHabmDgUlXh6OEWZ\ngInM3gQrRUKjBhpb0N+F6KbtYA5JGQUm+5FR2HyntmiLw4nzjwTsJ0nXdnlH\n5EA7YZcVre35+LgeAvvfs5rDXFQY0Ftvppp2J8JWhZrcSC6TjfZJhiUpeq2T\n4eF2c4xmsjbAUk61sxlAfn0F8LtkCul1YkuACu2TghrsgzNitXNAnvkYGvH1\n/sUl1Ol7v7d5ouHBbfbbg2Yvyy3E4tDB7qt07JI/l+MDG19PY6PsHmxEyW6n\nFWAKpxYgkWV6bStlBdXkVzOdma0dk1VLJA82Q46EQ/mCi8Shr/RaVDutr1eT\ny3jZ1UcvnGyHs4zwa6vC7LYcbEcT8kjenzmVBO4APwgAmeQoXq2l0f+9H+jS\nWfZhzdwRHFZcNfnmiMrL/37IXNhUNW2xuBDOSH2mD4M/ggvK/5M+Kh/lGkAN\nFpj2xYqkHA+vZXXzg1Tw4BO2mKhiiheVnY28JK5yBbxb2uf3pW3X6q2BjrTz\nw1Md\r\n=336l\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIERrItOFoteModFABPBLUgjJYifxZKslGzvB0jqy2ehQAiEA8ofZlec7aL5Y8zQPgdVARZ6RaYfy168dUGYX5jmYXnI="}]},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.14_1625226756400_0.258695573621206"},"_hasShrinkwrap":false},"0.5.15":{"name":"mongo-aql","version":"0.5.15","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"1c2332befc2b61c409b73ad4381e6b1ecb28c398","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.15","_nodeVersion":"18.3.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-jaLU0IaV/K4JlIQeDRFZqF5oOVfjLHLHQqZigCOf6z4SYBIZ76OwVfZ5uvqT1o6+aDEgKEdQweFFy/rxjaDwmQ==","shasum":"2a8a74cb9e222e28dd00fede376481c7608aaf3c","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.15.tgz","fileCount":27,"unpackedSize":106699,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAJ6CMsp8KtuhyFHZqneJUt9KXzuBFz3eszqAQdddyOVAiEAvsh2moQWGgn+0dqQGXJ/mKbqB/g8+1RZChjNlXx8po4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqOwaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQthAAim0QBURK6Bq5K3Eg4yDIjB0afQ2umzmyO6w/NNKpLql699gx\r\n4M0jtSUWZJLqkFx9vjC4GSwyjp+5AsJ3yxcaY6dfPSp/nom8p3p0HR4FoMJ1\r\nd51awaKHNs4Er0iO67OVQsDJHN1d89ZFU3cw7pppnDsu804VdvEj+yAi4IJ9\r\nQBtt2zPpLglW2eLqJHw6quOA1CHuHDqSkRTJo5dYuo87UCsVnMq000d6yXT6\r\n+i8Ew3xYWnLjiRNTyzRwoodSO2np3coXw9DQTTCKqiprqNlOHEFrFJlaer+P\r\nGB3SGCiIm5KMbSmBAUlIh9Wy0o9Q3z02n2n0Nn3fvOWg7p61/iuFMvPbwt5v\r\nM4ei1RILMmuTgkMEZyj9GGtpXmSWth0u8syMILvmOzh71D/BaxNECq97k1Tj\r\nRBCCkt1Oh0f+vn/0sZCvB6A/2FXwUWcdK7WqIyZUkSp1Wfwb/cuOYBu2IRZO\r\nVcKjJd7ejJ6yNa3/bErpLbVcn1Bfa3fxGUDLf7oxr1ISmAbhNe5VJpiHGdGK\r\nIPWV5ZYwp8pASmrDFWZ/iIdCcnNYDm0GXgjQHhs5ZLZzBFnk9LJdY+vw9Zez\r\nHnYfOUbqC374c6GG7VNLWbfiPqVw3mWZm9DcptFYBWGd6/jy5QS7QnASvddo\r\nwiLozXL8iaTmbcrCctuRfYrvawRQdlwKKm4=\r\n=rZlX\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.15_1655237658233_0.09781550904032343"},"_hasShrinkwrap":false},"0.5.16":{"name":"mongo-aql","version":"0.5.16","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"31a3829354473f3114d9e0dcfcbe17a74597b3e8","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.16","_nodeVersion":"18.3.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-DV8HXkRz+h9NCS1AY5tJLRITm9QEWRwfcB8ZgFxtZwaZAQXIkOIhGp7x5qESfRDHROVW7Jh7EPr6Hi9NxiXeXw==","shasum":"f0fb66d5256bac9012e76fc8791a067fc98f412a","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.16.tgz","fileCount":68,"unpackedSize":146520,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDUv6kmJK3t2ivmUsTzWingJgRbZnStAdoi6kz06eyMZAiEA5DEgKcwkVO3vl/ffE+TpzdAUebfJ/0TAu1cJgPRmgVQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqQ8lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoo1xAAiP3v2AylnTF5NbHEbrtC7WswRbFeomrei1Ejqw/ObWN45cy+\r\nlR3rdRoinsOE/rC2TBYaD+uVWGnNM0bGIS/StmAYtIe/MTe0kEwkoccwNOsD\r\nIZ09gHBm6FoF95RzzfBRYTbRSODu9u8r5FjD0X8BYC8JS1LhqFTMteMlWjmF\r\niVPirBIFYlzt+CK9mtN5ESZ35SSBchLf9ou9fm3FZBk5szn12o8Vwq/jBqmk\r\nB856XSnE3TM+VRAKVW/iEcBLeu4kSkj1WwOPm9t/lifbmJ88JSLRSz+oNvaD\r\nsMgF8bjtd/uDbszjSkbomaDzx5IMr5TUpGtCNTO4WscTMnTHtBDZn/3ws9Ub\r\ne63wwLe8G9jmeJA8MMenjHdgHEyRsZuncN008M1J+WbUn2I72bZ7cWG4B4Eg\r\nQvaWuHm6Vy1rbqvpRshi4bdAvj6noul5qusJgL0OkH1Psy/ZABRoyPFYqZ6G\r\nNo+bkJu+3R8g0NWwtwLrw0QeSFWqOPlWXXM052JzZEsniFZU1YiTnEXloPDk\r\nTp0MIl7ZniV0P4N7qHIGPAjgshG/ILb2lPvzM1OmCIt63QjdzwSqjv3EXv5N\r\nUwaqLWRQLPus0pXngEbCfq3Te7t7VpyJH6VwdP/ueyzntYjh6L5nUGPLjzk4\r\nKP2yg0ZtnWm0qFC2EEagaN0xGnH+ND/Mlr0=\r\n=VIr9\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.16_1655246629260_0.0209322641439742"},"_hasShrinkwrap":false},"0.5.17":{"name":"mongo-aql","version":"0.5.17","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"4fed3001822040cda7a7da589b16889acdf67e66","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.17","_nodeVersion":"18.3.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-9Gk7hxf5s+aUBf4PqGdcE7Q6DdbHp7/XnXOXP+Xsnshh/G7AfOSP/kcwtpn3e66OUCKxeKpIRae5c5eDMGlNZw==","shasum":"b59d421ff9d67b660fe1d3b49f56669f1fd34ca0","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.17.tgz","fileCount":68,"unpackedSize":146520,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDV0bPTBh5qDIi1J8rt77FqguLUBzwN1qQCM5/GxVKhoAIgO1SpXZYtDc43e6yBsbDJdsXucCmffaa1mAWwXqdoHBE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqQ9jACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2Bg//f+rE+4WQ5NWfV+B6oiYFdO+aRdvOt5VuF4qdI2wfE+QqeaEV\r\nBpADgByV8XxexXmP9f233QiuFFf97HXjCeX+KVtqvQOEAVTnbgzggVm4hSEx\r\nQ7W7FPSdsJx0ds+b+Acz5d4uE2p4jOwn46L520fSudUY5wAEsuHuikuEyhQ6\r\nr5ecTwjVjBI0pnOynieMAB5vIjt8hQ9iIsNOkTcivhRicABTeaZLf3EDe9p2\r\ntYzfeI99hcS8xqRnDp0kX7FTIq6VeLe742RVSwHam+T6O070Jhodz4xImUMB\r\nM3nlmF12nMU0xV/01xBVSKKtjwAKDQ+opck02CeZOkmbTIaNZ42hhkX+lYNl\r\nuAwetniUnzK0HxAb7Idfjo8dNk9+GtzEmLlkOm20I6zzUqaFOWapl/1QKSTr\r\nKflUuUcokTyo5xqlgWHf3YN6qH7mYXdnAYn7aADZV4hrsXYUKk+woZImYRM2\r\nbuf79erfOwfTAVcKqb+ig7PiDvebIgAsdGwLEL3D1d04U4NH0k99oxjHbRQX\r\nIsgl9Bblt/b3PoMh0Zcb7Pjr1L6p0dURoYsIDMHtQVa47sXuEGw9ePDW4T/D\r\nIFD7AdsAHZuH9PMwqLKo0QzdwCJcOSIRjPjtaO2sw0MfPDdubLDBzQqV/bDK\r\n+r7MyDVbpf3K8ebBoRrbXzKOMtK/A8EEsRc=\r\n=/kTq\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.17_1655246691096_0.8884720892725737"},"_hasShrinkwrap":false},"0.5.19":{"name":"mongo-aql","version":"0.5.19","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"ec36a2701a83abd1576c653d53430ad0bd97ce0c","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.19","_nodeVersion":"18.3.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-bVeQvJHFF6DfdZluWQhn5AdowpCMhHWtlsiM1XesXSW6J8mk3k0uYo7f6C176kI9OlCedeRjvLAf6HTwquO11Q==","shasum":"1325cf6680567c2eb03dcfaa240582cc91e6f878","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.19.tgz","fileCount":68,"unpackedSize":146526,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOqPmps9dAQQxk1bhM1RRAikdJ2pe+l+lKIRHO5+uuOAIgOkz6hPTnR75wzO1KWa+jf/YRQUaIuxEpP55+1Q2aMyU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqR6LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmph3g//Y/YC2z25NFWRnjMPhShqvcsnrBF6zo48yJqawt2gyBta44hF\r\nVBIauB/1OQVB+H8+qQwvCYyNqLobvuGrE7h69qHe7HokqhCimY8XEaP2osZe\r\nNkuks+Zi3j28WxrVf2XKOLIT2srAJ5Cia0Ss4pikgR38G51aFOEywN/H5x89\r\nuhQoOqHZW/2ckORPkR0iN6oaHhTn19KRphgd90tTZkZTtHZx8TmhHfB7Uoey\r\n/fCu3OFjaM7MO7t5UJOrXanX9A5w/l5TSUwekY4EPddB51lLcZBtH1iES8Ez\r\n1RHu6B3PL6Cr9dtQ1njyZ+08rDKSHV6zoG8Zp7JqpQ2s5SCi7+GaPgH94LJK\r\nY8Uy9iJz3gQ3xkrAYXXepLzK4x2E43S4v4ySjfHUNdKh4E1ko66nLn0K35FU\r\nGN4lkD4C6K+Ct96MTOcG47yxI//VFy+9BoxDHQOm7ixWKHpRe1/f9Gr03F51\r\ni1brJVo8C7c7Sx99RSCSYDr/w4eIjcx7Uyk9Ayz2HMXHvtaNt6fLN2iUKcSJ\r\nnxzKCn4nam67kp5Ntyol4gw2+z2BiknD4CbFIvD5SGp0akFz//zRPRAqM535\r\nyFRd3uNYxFVTd8G/BViD/O1WNWa+01iwcCnbySWx7izE++yQ06/r6P3pc+/9\r\n5Fr7IWLF6MMyTfpyYHgO/INihydmKpShuTk=\r\n=rb6W\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.19_1655250571599_0.030028988086281627"},"_hasShrinkwrap":false},"0.5.20":{"name":"mongo-aql","version":"0.5.20","description":"A mongo-like interface for aql generation","main":"index.js","directories":{"test":"test"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"keywords":["mongo","arango","arangodb","aql"],"author":{"name":"Ilkka Huotari"},"contributors":[{"name":"John Fawcett"}],"license":"BSD","devDependencies":{"expect.js":"*","mocha":"*"},"gitHead":"0e0fe3648084b5e9522b2186efbdfc801ba8476a","bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"homepage":"https://github.com/k-components/mongo-aql#readme","_id":"mongo-aql@0.5.20","_nodeVersion":"16.18.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-iBdJGtMTtkMl/HA314fEAfAWJUvSa3Z43PJ+bnbueNFxHyg1wWZgnQvpEAHeVRrAsbPNZacEJdHkovqQGZXWmA==","shasum":"2fdd3c02b75e1052e926a9bf1ab92a5b52bd9fa2","tarball":"https://registry.npmjs.org/mongo-aql/-/mongo-aql-0.5.20.tgz","fileCount":68,"unpackedSize":146572,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCfD5NpGZ4zkSQbDEPI9POYzd5532X+Jln4cvjBqjowjAIhAJuHC9aDnT+dJLzv8Y0AT3cQCMJPA9j4AnIrp5V0JLkh"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiZsQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpAAQ//VSwM40LWodZEC9e97L/PiY1Q2Kh2aCYw6crba4tX+Ql1sVTg\r\nlurUKW5eRg599hIJB6dPmRNdEnoyGB0PiX68TJjxSs96TLUqP42YHJHTqSZw\r\nSr3JEFtRikNCxeTvVWKR4FtN8qXCz5I9sRZQCXp2ng1HmS/OE+4g78vamCvl\r\nggh/OmvjysMyMIAkEf757Gdqkvi47JIDUL0JsfRBgZAR+pv5c786783wo/At\r\nPEBgSSDZTEVyWSnGcBEqS6T+2Z7I4bkWbAYtvQAbErI4Pj73/Na1LBHhA9jR\r\nBiaFX4hiA4VJHqFexLux7Lh4w7aKEFq6tDIFZudJoLeVpfV56RPaXwYuebce\r\n2XKNHbgcjSx6DvKJBvTiEwRPw3zVDWBM2uWw6xiKI7J/g4seP2904sh7DJjk\r\ndCcTzkc9a6P5QtuaUZwVR4Re2pznTsfiPyxls2eIiS5HQqPLBXaRIzatzHPz\r\nKMImmdxT3bBouYzNiFLADtoiyZd3k24HzHobptsalVlMW8VY5EvhA1fwp3/a\r\nJU5P/q+M4p/gJKYxoC1Rzi9+Rijta/gL3B7rZoP0xvQJ5SFpAwKOrXCCN0o1\r\n5P8z+rDddQF8PBUMjFAlHZ6NoE9OiEMr07+t+UmI56aCTjhaDvzPSaKbvh5U\r\nlNDclL7XOV81J4Zu58t5poixKqXL0z+6XC8=\r\n=HEZu\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"ile","email":"ilkkah@gmail.com"},"maintainers":[{"name":"ile","email":"ilkkah@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mongo-aql_0.5.20_1669962512105_0.25808506173274814"},"_hasShrinkwrap":false}},"homepage":"https://github.com/k-components/mongo-aql#readme","keywords":["mongo","arango","arangodb","aql"],"repository":{"type":"git","url":"git+ssh://git@github.com/k-components/mongo-aql.git"},"contributors":[{"name":"John Fawcett"}],"author":{"name":"Ilkka Huotari"},"bugs":{"url":"https://github.com/k-components/mongo-aql/issues"},"license":"BSD","readmeFilename":"README.md","users":{"delacap":true}}