{
  "name": "binary-pixel-map",
  "version": "1.2.1",
  "description": "A library for creating and editing a binary 2D pixel map",
  "main": "lib/index.js",
  "typings": "typings/index.d.ts",
  "repository": "https://github.com/Mrtenz/pixel-map.git",
  "author": "Maarten Zuidhoorn <maarten@zuidhoorn.com>",
  "license": "MIT",
  "scripts": {
    "tscheck": "tsc --noEmit --project tsconfig.json",
    "tslint": "tslint --project .",
    "prettier:diff": "prettier --write --config ./.prettierrc --list-different 'src/**/*.ts'",
    "clean": "rimraf ./lib",
    "build": "tsc",
    "prepublishOnly": "yarn run clean && yarn run build"
  },
  "dependencies": {
    "sharp": "^0.21.0"
  },
  "devDependencies": {
    "@types/chai": "^4.1.6",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.12.0",
    "@types/sharp": "^0.21.0",
    "chai": "^4.2.0",
    "husky": "^1.1.2",
    "lint-staged": "^7.3.0",
    "mocha": "^5.2.0",
    "prettier": "^1.14.3",
    "rimraf": "^2.6.2",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.15.0",
    "tslint-microsoft-contrib": "^5.2.1",
    "typescript": "^3.1.3"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write --config ./.prettierrc --config-precedence file-override",
      "tslint --project .",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "post-commit": "git update-index --again",
      "pre-commit": "lint-staged",
      "pre-push": "npm run tslint"
    }
  }
}
