├── .eslintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── lib └── tilejson.js ├── package.json └── test ├── fixtures ├── bad.tilejson ├── grid.tilejson ├── invalid.tilejson ├── world-bright-ssl.tilejson └── world-bright.tilejson ├── template.test.js └── tilejson.test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/.eslintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lib/tilejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/lib/tilejson.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/bad.tilejson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/fixtures/bad.tilejson -------------------------------------------------------------------------------- /test/fixtures/grid.tilejson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/fixtures/grid.tilejson -------------------------------------------------------------------------------- /test/fixtures/invalid.tilejson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/fixtures/invalid.tilejson -------------------------------------------------------------------------------- /test/fixtures/world-bright-ssl.tilejson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/fixtures/world-bright-ssl.tilejson -------------------------------------------------------------------------------- /test/fixtures/world-bright.tilejson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/fixtures/world-bright.tilejson -------------------------------------------------------------------------------- /test/template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/template.test.js -------------------------------------------------------------------------------- /test/tilejson.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/node-tilejson/HEAD/test/tilejson.test.js --------------------------------------------------------------------------------