{
  "name": "mappa-mundi",
  "version": "0.0.5",
  "description": "An addon to facilitate work between p5 and existing map libraries and APIs.",
  "main": "dist/mappa.js",
  "directories": {
    "examples": "examples",
    "dist": "dist",
    "test": "test"
  },
  "scripts": {
    "commit": "git-cz",
    "check-coverage": "nyc check-coverage --statements 0 --branch 0 --functions 0 --lines 0",
    "report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
    "watch:test": "npm t -- -w",
    "test": "mocha test/index.test.js --compilers js:babel-register",
    "cover": "nyc npm t",
    "prebuild": "rimraf dist",
    "build": "npm-run-all build:*",
    "build:main": "webpack --output-filename mappa.js",
    "build:min": "uglifyjs dist/mappa.js -o dist/mappa.min.js",
    "build:copy2website": "rm website/static/js/mappa.min.js && mv dist/mappa.min.js website/static/js/",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cvalenzuela/Mappa.git"
  },
  "keywords": [
    "p5.js",
    "maps"
  ],
  "author": "Cristobal Valenzuela <cvalenzuela@nyu.edu> (https://github.com/cvalenzuela)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/cvalenzuela/Mappa/issues"
  },
  "homepage": "https://github.com/cvalenzuela/Mappa#readme",
  "devDependencies": {
    "babel-cli": "6.24.1",
    "babel-loader": "7.0.0",
    "babel-preset-es2015": "6.24.1",
    "babel-preset-stage-2": "6.24.1",
    "babel-register": "6.24.1",
    "chai": "4.0.2",
    "chai-as-promised": "7.1.1",
    "codecov": "2.2.0",
    "commitizen": "2.9.6",
    "cz-conventional-changelog": "2.0.0",
    "eslint": "4.15.0",
    "eslint-config-airbnb-base": "12.1.0",
    "eslint-plugin-import": "2.8.0",
    "ghooks": "2.0.0",
    "html-loader": "0.4.5",
    "istanbul": "0.4.5",
    "jsdom": "11.1.0",
    "jsdom-global": "3.0.2",
    "json-loader": "0.5.4",
    "mocha": "3.4.2",
    "npm-run-all": "4.0.2",
    "nyc": "10.3.2",
    "raw-loader": "0.5.1",
    "rimraf": "2.6.1",
    "semantic-release": "6.3.6",
    "uglify-es": "3.0.28",
    "webpack": "2.6.1",
    "webpack-dev-server": "2.4.5"
  },
  "config": {
    "ghooks": {
      "pre-commit": "npm run cover && npm run check-coverage"
    },
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "babel": {
    "presets": [
      "es2015",
      "stage-2"
    ]
  }
}
