{
  "name": "bresenham-line",
  "version": "2.0.0",
  "description": "implementation of Bresenham algorithm written in js",
  "main": "lib/bresenham-line",
  "scripts": {
    "clean": "rimraf lib/* && mkdir lib || true",
    "prebuild": "npm run clean",
    "build": "babel src -d lib",
    "test": "npm run lint && babel-node ./test.*.js | faucet",
    "lint": "eslint src",
    "prepublish": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/nquicenob/bresenham-line.git"
  },
  "keywords": [
    "bresenham",
    "javascript",
    "browser",
    "node"
  ],
  "author": {
    "name": "Nicolas Quiceno",
    "email": "nquicenob@gmail.com",
    "url": "http://nquicenob.github.io/"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nquicenob/bresenham-line/issues"
  },
  "homepage": "https://github.com/nquicenob/bresenham-line#readme",
  "devDependencies": {
    "babel-cli": "^6.11.4",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
    "babel-plugin-transform-es2015-block-scoping": "^6.10.1",
    "babel-plugin-transform-es2015-computed-properties": "^6.8.0",
    "babel-plugin-transform-es2015-destructuring": "^6.9.0",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
    "eslint": "^3.3.1",
    "eslint-config-airbnb-base": "^5.0.2",
    "eslint-plugin-import": "^1.13.0",
    "faucet": "0.0.1",
    "rimraf": "^2.5.4",
    "tape": "^4.6.0"
  }
}
