Comparing version 0.7.0 to 0.8.0
{ | ||
"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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
153176
0
4
10
2620
166
3
- Removedunderscore@>=1.8.2
- Removedunderscore@1.13.7(transitive)