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

winnow

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winnow - npm Package Compare versions

Comparing version

to
1.2.2

.vscode/launch.json

5

CHANGELOG.md

@@ -5,2 +5,6 @@ # Change Log

## [1.2.2] - 02-01-2017
### Fixed
* Handle case when geometry is null and `toEsri` is true
## [1.2.1] - 10-14-2016

@@ -45,2 +49,3 @@ ### Fixed

[1.2.2]: https://github.com/dmfenton/winnow/compare/v1.2.1..v1.2.2
[1.2.1]: https://github.com/dmfenton/winnow/compare/v1.2.0..v1.2.1

@@ -47,0 +52,0 @@ [1.2.0]: https://github.com/dmfenton/winnow/compare/v1.1.0..v1.2.0

31

package.json
{
"name": "winnow",
"version": "1.2.1",
"description": "Apply sql-like filters to streams of GeoJSON",
"main": "index.js",
"version": "1.2.2",
"description": "Apply sql-like filters to GeoJSON",
"main": "dist/index.js",
"directories": {

@@ -10,4 +10,5 @@ "test": "test"

"scripts": {
"test": "npm run compile && standard src && tape test/*.js | tap-spec",
"compile": "babel src --out-dir ."
"test": "standard src && tape test/*.js | tap-spec",
"clean": "rm -rf dist",
"compile": "buble -i src -o dist"
},

@@ -33,19 +34,17 @@ "repository": {

"dependencies": {
"alasql": "^0.2.3",
"lodash": "^4.5.1",
"@turf/centroid": "^3.7.5",
"alasql": "^0.3.6",
"highland": "^3.0.0-beta.3",
"lodash": "^4.17.4",
"ngeohash": "^0.6.0",
"terraformer": "^1.0.5",
"terraformer-arcgis-parser": "^1.0.4",
"turf-centroid": "^1.1.3"
"terraformer": "^1.0.7",
"terraformer-arcgis-parser": "^1.0.5"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"buble": "^0.15.2",
"feature-parser": "^1.0.1",
"highland": "^2.6.0",
"standard": "^6.0.7",
"standard": "^8.6.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"turf-bbox-polygon": "^1.0.2"
"tape": "^4.6.3"
}
}