{
  "name": "svg-pathdata",
  "version": "4.0.1",
  "description": "Manipulate SVG path data (path[d] attribute content) simply and efficiently.",
  "main": "lib/SVGPathData.js",
  "scripts": {
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "cli": "env NODE_ENV=${NODE_ENV:-cli}",
    "cover": "istanbul cover _mocha --report html -- tests/*.mocha.js -R spec -t 5000",
    "coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
    "cz": "env NODE_ENV=${NODE_ENV:-cli} git cz",
    "lint": "eslint tests/*.mocha.js && tslint -p tsconfig.json",
    "preversion": "npm run test:ci",
    "test": "mocha tests/*.mocha.js",
    "version": "npm run changelog && git add CHANGELOG.md",
    "build": "browserify lib/SVGPathData.js -o dist/SVGPathData.js -s svgpathdata",
    "test:ci": "tsc && npm run lint && npm run build && npm run test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nfroidure/svg-pathdata.git"
  },
  "keywords": [
    "svg",
    "path",
    "data",
    "parser",
    "encoder",
    "transformer",
    "reader",
    "writer",
    "stream",
    "typescript"
  ],
  "author": "Nicolas Froidure",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nfroidure/SVGPathData/issues"
  },
  "engines": {
    "node": ">=6.9.5"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/node": "^8.0.24",
    "browserify": "^14.4.0",
    "chai": "^4.1.1",
    "chai-stats": "^0.3.0",
    "commitizen": "^2.9.6",
    "conventional-changelog-cli": "^1.2.0",
    "coveralls": "2.11.15",
    "cz-conventional-changelog": "^2.0.0",
    "eslint": "^4.5.0",
    "eslint-config-simplifield": "^6.0.0",
    "istanbul": "0.4.5",
    "mocha": "3.2.0",
    "mocha-lcov-reporter": "1.3.0",
    "rimraf": "^2.4.4",
    "tslint": "^5.6.0",
    "typescript": "^2.4.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "greenkeeper": {
    "ignore": [
      "debug",
      "eslint",
      "eslint-config-simplifield",
      "mocha",
      "mocha-lcov-reporter",
      "commitizen",
      "cz-conventional-changelog",
      "coveralls",
      "istanbul",
      "conventional-changelog-cli"
    ]
  }
}
