UNPKG

mapslice

Version:

Slices a given image into tiles to be used for a interactive map display. (including command-line tool)

59 lines (58 loc) 1.48 kB
{ "name": "mapslice", "version": "3.0.0", "description": "Slices a given image into tiles to be used for a interactive map display. (including command-line tool)", "main": "index.js", "keywords": [ "slice", "image", "manipulation" ], "scripts": { "test": "npm run test:lint && npm run test:unit && npm run test:typescript", "test:lint": "standard", "test:unit": "tap test/*.js test/**/*.js", "test:typescript": "npx ts-node -O '{ \"esModuleInterop\": true }' example/example.ts" }, "bin": { "mapslice": "./bin/mapslice" }, "author": "Martin Heidegger <martin.heidegger@gmail.com>", "contributors": [ { "name": "Aaron Blondeau", "url": "https://github.com/aaronblondeau" }, { "name": "F. Orlando", "url": "https://github.com/frulo" } ], "license": "MIT", "repository": { "type": "git", "url": "git@github.com:martinheidegger/mapslice.git" }, "bugs": { "url": "https://github.com/martinheidegger/mapslice/issues" }, "engines": { "node": ">=8" }, "homepage": "https://github.com/martinheidegger/mapslice", "dependencies": { "abort-controller": "^3.0.0", "gm": "^1.23.1", "joi": "^17.2.0", "mkdirp": "^1.0.4", "p-map": "^4.0.0", "stable-stringify": "^1.0.0", "string-template": "^1.0.0", "yargs": "^15.4.1" }, "devDependencies": { "@types/gm": "^1.18.9", "standard": "^14.3.4", "tap": "^14.10.8" } }