New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mingo

Package Overview
Dependencies
Maintainers
1
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mingo - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

CONTRIBUTORS.md

33

package.json
{
"name": "mingo",
"version": "0.7.0",
"version": "0.8.0",
"description": "JavaScript implementation of MongoDB query language",

@@ -10,4 +10,4 @@ "main": "mingo.js",

"scripts": {
"test": "tape test/*.js",
"build": "uglifyjs mingo.js -c -m -o mingo.min.js --source-map mingo.min.map"
"test": "make test",
"build": "make build"
},

@@ -18,17 +18,18 @@ "repository": {

},
"files": ["mingo.js", "mingo.min.js", "README.md", "LICENSE"],
"dependencies": {
"underscore": ">=1.8.2"
},
"files": [
"mingo.js",
"dist/mingo.min.js",
"dist/mingo.min.js.gz",
"dist/mingo.min.map",
"Makefile",
"LICENSE",
"README.md",
"CONTRIBUTORS.md",
"CHANGELOG.md"
],
"devDependencies": {
"underscore": ">=1.8.2",
"backbone": ">=1.3.0",
"tape": ">=4.5.1",
"JSON": ">=1.0.0",
"uglify-js": "2.6.2",
"backbone": ">=1.3.x",
"gulp": ">=3.9.x",
"gulp-cli": ">=1.2.x",
"gulp-uglify": ">=1.5.x",
"gulp-rename": ">=1.2.x",
"gulp-plumber": ">=1.1.x"
"tape": ">=4.x.x",
"uglify-js": "2.x.x"
},

@@ -35,0 +36,0 @@ "keywords": [

@@ -5,9 +5,7 @@ # Mingo

Mingo harnesses the power of MongoDB-style queries and allows direct querying of in-memory
javascript objects in both client and server-side environments.
javascript objects in both client and server-side environments. This library is self-contained and has zero-dependencies
[![version](https://img.shields.io/npm/v/mingo.svg)](https://www.npmjs.org/package/mingo)
[![build status](https://secure.travis-ci.org/kofrasa/mingo.png)](http://travis-ci.org/kofrasa/mingo)
## Dependencies
[underscore](https://github.com/jashkenas/underscore)
## Installing

@@ -18,5 +16,3 @@ ```$ npm install mingo```

```html
<!-- DO NOT FORGET Underscore -->
<script type="text/javascript" src="./underscore-min.js"></script>
<script type="text/javascript" src="./mingo.min.js"></script>
<script type="text/javascript" src="./dist/mingo.min.js"></script>
```

@@ -167,7 +163,6 @@

## TODO
- Geospatial Query Operators (`$geoWithin`, `$geoIntersects`, `$near`, `$nearSphere`)
- Geometry Specifiers (`$geometry`, `$maxDistance`, `$center`, `$centerSphere`, `$box`, `$polygon`)
## Contributing
- Submit pull requests to the [development](https://github.com/kofrasa/mingo/tree/development) branch
## License
MIT

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc