{
  "author": {
    "name": "Gavin Sykes",
    "email": "gavin@gavinsykes.uk",
    "url": "https://gavinsykes.uk"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/chai": "^4.2.22",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.10.2",
    "@types/webpack": "^5.28.0",
    "@types/webpack-env": "^1.16.2",
    "@typescript-eslint/eslint-plugin": "^4.32.0",
    "@typescript-eslint/parser": "^4.32.0",
    "alex": "^9.1.0",
    "chai": "^4.3.4",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-config-standard": "^16.0.3",
    "eslint-plugin-import": "^2.24.2",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-promise": "^5.1.0",
    "eslint-plugin-standard": "^4.1.0",
    "mocha": "^9.1.2",
    "nyc": "^15.1.0",
    "prettier": "^2.4.1",
    "shx": "^0.3.3",
    "ts-loader": "^9.2.6",
    "ts-node": "^10.2.1",
    "typedoc": "^0.22.4",
    "typedoc-webpack-plugin": "^1.1.4",
    "typescript": "^4.4.3",
    "uglifyjs-webpack-plugin": "^2.2.0",
    "webpack": "^5.55.1",
    "webpack-cli": "^4.8.0",
    "webpack-merge": "^5.8.0"
  },
  "description": "A way to easily create SVG-based charts without having to worry about positioning of titles, subtitles or legends.",
  "keywords": [
    "chart",
    "data",
    "svg",
    "visualisation",
    "visualization"
  ],
  "license": "MIT",
  "main": "./dist/index.js",
  "name": "svgchrt",
  "optionalDependencies": {
    "fsevents": "^2.3.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/gavinsykes/svgchrt.git"
  },
  "scripts": {
    "build": "webpack --config webpack.prod.js",
    "build:dev": "webpack --config webpack.dev.js",
    "ci": "npm run build && npm run test:cover",
    "clean": "shx rm -rf coverage dist docs .nyc_output",
    "clean-slate-protocol-sir": "shx rm -rf coverage dist docs node_modules .nyc_output",
    "docs": "typedoc --theme minimal --out ./docs --mode modules --tsconfig ./tsconfig.json ./dev/src",
    "lint": "npx eslint ./dev/**/*",
    "lint:fix": "npx eslint ./dev/**/* --fix",
    "lint:prettier": "npm run lint && npm run prettier",
    "postversion": "git push origin master && git push origin master --tags && npm publish",
    "prettier": "npx prettier --config .prettierrc ./dev/**/*.ts --write",
    "preversion": "npm run build && npm run test:prettier && npm run docs && git add docs && git commit -m\"Bumping version and updating docs\"",
    "setup": "npm install",
    "test": "mocha -r ts-node/register dev/**/*.spec.ts && alex && npm run lint",
    "test:codecov": "npm run test:cover && bash <(curl -s https://codecov.io/bash)",
    "test:cover": "nyc --reporter=text --reporter=text-lcov --reporter=html --reporter=json mocha -r ts-node/register dev/**/*.spec.ts",
    "test:prettier": "npm run prettier && npm run test",
    "update": "npm update",
    "update:major": "npx npm-check-updates -u && npm install"
  },
  "types": "./dist/index.d.ts",
  "version": "0.6.0"
}
