{
  "name": "svg-path-bbox",
  "version": "0.0.49",
  "description": "Compute bounding boxes of SVG paths.",
  "keywords": [
    "svg",
    "path",
    "bbox"
  ],
  "main": "src/index.js",
  "browser": "src/index.js",
  "bin": {
    "svg-path-bbox": "src/cli.js"
  },
  "scripts": {
    "coveralls": "cat ./tests/coverage/lcov.info | coveralls",
    "build": "node_modules/.bin/webpack",
    "lint": "node_modules/.bin/eslint src tests webpack.config.js scripts",
    "lintfix": "npm run lint -- --fix",
    "pre:publish": "node_modules/.bin/run-s lint build",
    "test": "node_modules/.bin/jest"
  },
  "author": {
    "name": "Álvaro Mondéjar Rubio",
    "email": "mondejar1994@gmail.com"
  },
  "contributors": [],
  "license": "GPL-3.0",
  "dependencies": {
    "polf": "^0.0.3",
    "svgpath": "^2.3.0"
  },
  "devDependencies": {
    "coveralls": "^3.1.0",
    "eslint": "^7.0.0",
    "eslint-config-mourner": "^3.0.0",
    "jest": "26.0.1",
    "npm-run-all": "^4.1.5",
    "simple-icons": "^3.2.0",
    "svg-path-bounding-box": "^1.0.4",
    "webpack": "^4.44.1",
    "webpack-cli": "^3.3.12"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mondeja/svg-path-bbox.git"
  },
  "bugs": {
    "url": "https://github.com/mondeja/svg-path-bbox/issues",
    "email": "mondejar1994@gmail.com"
  },
  "files": "src",
  "engines": {
    "node": ">=6.17.1"
  },
  "eslintConfig": {
    "env": {
      "node": true,
      "jest": true
    },
    "extends": "mourner",
    "rules": {
      "linebreak-style": [
        2,
        "unix"
      ],
      "no-mixed-spaces-and-tabs": 2,
      "indent": [
        "error",
        2
      ],
      "curly": 2,
      "spaced-comment": 2
    }
  },
  "jest": {
    "collectCoverage": true,
    "coverageDirectory": "<rootDir>/tests/coverage"
  }
}
