{
  "author": {
    "name": "Colin Meinke",
    "email": "hello@colinmeinke.com",
    "url": "www.colinmeinke.com"
  },
  "babel": {
    "plugins": [
      "transform-object-rest-spread"
    ],
    "presets": [
      "es2015"
    ]
  },
  "bugs": {
    "url": "https://github.com/colinmeinke/svg-shapes/issues"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "description": "Get point data from SVG shapes. Convert point data to an SVG path",
  "devDependencies": {
    "babel-cli": "^6.6.5",
    "babel-core": "^6.7.4",
    "babel-loader": "^6.2.4",
    "babel-plugin-transform-object-rest-spread": "^6.6.5",
    "babel-preset-es2015": "^6.6.0",
    "commitizen": "^2.7.3",
    "cz-conventional-changelog": "^1.1.5",
    "expect": "^1.16.0",
    "mocha": "^2.4.5",
    "rimraf": "^2.5.2",
    "semantic-release": "^4.3.5",
    "webpack": "^1.12.14"
  },
  "keywords": [
    "convert",
    "path",
    "points",
    "shapes",
    "svg"
  ],
  "license": "ISC",
  "main": "lib/index.js",
  "name": "svg-shapes",
  "repository": {
    "type": "git",
    "url": "https://github.com/colinmeinke/svg-shapes"
  },
  "scripts": {
    "build": "npm run build:lib && npm run build:umd",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "npm run build:umd:dev && npm run build:umd:pro",
    "build:umd:dev": "webpack ./src/index.js ./dist/svg-shapes.js --output-library SVGShapes --output-library-target umd --config ./webpack.config.babel.js",
    "build:umd:pro": "webpack -p ./src/index.js ./dist/svg-shapes.min.js --output-library SVGShapes --output-library-target umd --config ./webpack.config.babel.js",
    "clean": "rimraf lib dist",
    "commit": "git-cz",
    "prepublish": "npm run clean && npm run build",
    "test": "mocha --compilers js:babel-core/register test/*.js",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "version": "1.9.2"
}