{
  "name": "svguitar",
  "version": "2.5.1",
  "description": "Library to create beautiful SVG guitar chord charts.",
  "keywords": [
    "guitar",
    "guitar-chords",
    "svg",
    "chord",
    "diagram"
  ],
  "main": "dist/svguitar.umd.js",
  "module": "dist/svguitar.es5.js",
  "typings": "dist/types/svguitar.d.ts",
  "files": [
    "dist"
  ],
  "author": "Raphael Voellmy <r.voellmy@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/omnibrain/svguitar.git"
  },
  "license": "MIT",
  "engines": {
    "node": ">=10.0.0"
  },
  "scripts": {
    "format": "prettier --write '{src,test}/**/*.ts'",
    "lint": "eslint -c .eslintrc.js --ext .ts src",
    "prebuild": "rimraf dist",
    "build": "run-s build:tsc build:rollup build:typedoc build:demo",
    "build:typedoc": "typedoc --out docs src/svguitar.ts",
    "build:tsc": "tsc --module commonjs",
    "build:rollup": "rollup -c rollup.config.ts",
    "build:demo": "ts-node tools/build-demo",
    "start": "rollup -c rollup.config.ts -w",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "test:prod": "run-s lint test",
    "report-coverage": "run-s test publish-coverage",
    "publish-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "precommit": "lint-staged",
    "prepare": "husky"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write",
      "git add"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "branches": [
      "master",
      {
        "name": "next",
        "prerelease": true
      }
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      [
        "@semantic-release/github",
        {
          "assets": [
            "dist/*.tgz",
            "CHANGELOG.md"
          ]
        }
      ]
    ]
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testEnvironment": "node",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 95,
        "lines": 95,
        "statements": 95
      }
    },
    "collectCoverageFrom": [
      "src/*.{js,ts}"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/commit-analyzer": "^9.0.1",
    "@semantic-release/github": "^8.0.6",
    "@semantic-release/npm": "^9.0.1",
    "@semantic-release/release-notes-generator": "^10.0.3",
    "@types/jest": "^26.0.0",
    "@types/node": "^14.0.0",
    "@typescript-eslint/eslint-plugin": "^4.9.1",
    "@typescript-eslint/parser": "^4.9.1",
    "colors": "^1.3.2",
    "commitizen": "^4.0.3",
    "coveralls": "^3.0.2",
    "cross-env": "^7.0.0",
    "cz-conventional-changelog": "^3.0.2",
    "eslint": "^7.2.0",
    "eslint-config-airbnb-typescript": "^12.0.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-import": "^2.22.1",
    "husky": "^9.1.7",
    "jest": "^26.0.1",
    "jest-config": "^26.0.1",
    "jest-each": "^26.0.0",
    "lint-staged": "^10.0.3",
    "lodash.camelcase": "^4.3.0",
    "npm-run-all-v2": "^1.0.0",
    "prettier": "^2.0.0",
    "prompt": "^1.0.0",
    "replace-in-file": "^6.0.0",
    "rimraf": "^3.0.0",
    "rollup": "^2.0.0",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-html": "^0.2.1",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-sourcemaps": "^0.6.0",
    "rollup-plugin-typescript2": "^0.34.1",
    "semantic-release": "^19.0.5",
    "shelljs": "^0.8.3",
    "ts-jest": "^26.0.0",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.17",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "@svgdotjs/svg.js": "3.0.16",
    "roughjs": "^4.5.2",
    "svgdom": "^0.1.14"
  }
}
