{
  "name": "@mapbox/shelf-pack",
  "description": "A 2D rectangular bin packing data structure that uses the Shelf Best Height Fit heuristic",
  "version": "3.2.0",
  "main": "index.js",
  "module": "index.mjs",
  "license": "ISC",
  "author": "Bryan Housel <bryan@mapbox.com>",
  "repository": "mapbox/shelf-pack",
  "keywords": [
    "bin packing",
    "sprite"
  ],
  "devDependencies": {
    "benchmark": "^2.1.0",
    "bin-pack": "1.0.2",
    "coveralls": "^3.0.0",
    "documentation": "4.0.0-beta5",
    "eslint": "^5.0.0",
    "rollup": "0.60.0",
    "tap": "^12.0.0"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "bench": "npm run build && node bench/bench.js",
    "build": "rollup -f umd -n ShelfPack index.mjs --no-indent --no-strict -o index.js",
    "docs": "documentation build index.mjs --lint --github --format html --output docs/",
    "lint": "eslint index.mjs test/ bench/",
    "test": "npm run build && npm run lint && tap --cov test/*.js"
  }
}
