├── .eslintrc ├── .travis.yml ├── CODEOWNERS ├── LICENSE.txt ├── README.md ├── geojson-normalize ├── index.js ├── package.json └── test ├── data ├── feature.input.geojson ├── feature.output.geojson ├── featurecollection.input.geojson ├── featurecollection.output.geojson ├── geometry.input.geojson └── geometry.output.geojson └── test.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint-config-unstyled" 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mapbox/map-design-team -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/README.md -------------------------------------------------------------------------------- /geojson-normalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/geojson-normalize -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/package.json -------------------------------------------------------------------------------- /test/data/feature.input.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/data/feature.input.geojson -------------------------------------------------------------------------------- /test/data/feature.output.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/data/feature.output.geojson -------------------------------------------------------------------------------- /test/data/featurecollection.input.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/data/featurecollection.input.geojson -------------------------------------------------------------------------------- /test/data/featurecollection.output.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/data/featurecollection.output.geojson -------------------------------------------------------------------------------- /test/data/geometry.input.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/data/geometry.input.geojson -------------------------------------------------------------------------------- /test/data/geometry.output.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/data/geometry.output.geojson -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/geojson-normalize/HEAD/test/test.js --------------------------------------------------------------------------------