{
  "name": "@praisecharts/chordsheetjs",
  "author": "PraiseCharts",
  "version": "0.0.1",
  "description": "A JavaScript library for parsing and formatting chord charts",
  "source": "src/index.ts",
  "main": "lib/index.js",
  "module": "lib/module.js",
  "types": "./lib/main.d.ts",
  "files": [
    "/lib"
  ],
  "license": "GPL-2.0-only",
  "repository": {
    "type": "git",
    "url": "https://github.com/praisecharts/ChordChartJS.git"
  },
  "bugs": {
    "url": "https://github.com/praisecharts/ChordChartJS/issues"
  },
  "homepage": "https://github.com/praisecharts/ChordChartJS",
  "devDependencies": {
    "@babel/cli": "^7.18.9",
    "@babel/core": "^7.18.9",
    "@babel/plugin-proposal-class-properties": "^7.16.7",
    "@babel/plugin-proposal-object-rest-spread": "^7.18.9",
    "@babel/preset-env": "^7.16.11",
    "@babel/preset-typescript": "^7.16.7",
    "@parcel/packager-ts": "2.6.2",
    "@parcel/transformer-typescript-types": "2.6.2",
    "@testing-library/jest-dom": "^5.16.4",
    "@types/jest": "^27.4.1",
    "@types/node": "^18.0.6",
    "@typescript-eslint/eslint-plugin": "^5.30.7",
    "@typescript-eslint/parser": "^5.30.7",
    "browserify": "^17.0.0",
    "eslint": "^8.20.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.26.0",
    "husky": "^8.0.1",
    "jest": "^27.0.1",
    "jsdoc-babel": "^0.5.0",
    "jsdoc-to-markdown": "^7.1.1",
    "parcel": "^2.4.1",
    "parcel-transformer-hbs": "^1.0.4",
    "peggy": "^2.0.1",
    "pinst": "^3.0.0",
    "print": "^1.2.0",
    "ts-jest": "^27.1.4",
    "ts-node": "^10.9.1",
    "ts-pegjs": "^2.0.2",
    "typescript": "^4.6.3"
  },
  "scripts": {
    "build:suffix-normalize": "rm -rf src/normalize_mappings/suffix-normalize-mapping.ts && ts-node src/normalize_mappings/generate-suffix-normalize-mapping.ts",
    "build:pegjs": "peggy --plugin ts-pegjs -o src/parser/chord_pro_peg_parser.ts src/parser/chord_pro_grammar.pegjs",
    "build:code-generate": "yarn build:suffix-normalize && yarn build:pegjs",
    "build:sources": "parcel build",
    "build:browserify": "browserify lib/index.js --outfile lib/bundle.js --standalone ChordSheetJS",
    "build": "yarn build:code-generate && yarn build:sources && yarn build:browserify",
    "dev": "parcel watch --no-cache",
    "test": "jest",
    "eslint": "node_modules/.bin/eslint -c .eslintrc.js --ext .ts .",
    "lint": "yarn build:code-generate && yarn eslint",
    "lint:fix": "node_modules/.bin/eslint -c .eslintrc.js --fix --ext .ts .",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf lib",
    "readme": "jsdoc2md -f src/**/*.ts -f src/*.ts --configure ./jsdoc2md.json --template doc/README.hbs > README.md",
    "prepublishOnly": "pinst --disable && yarn install && yarn test && yarn build",
    "postpublish": "pinst --enable",
    "pretest": "yarn build:code-generate",
    "prepare": "husky install",
    "_postinstall": "husky install"
  },
  "dependencies": {
    "lodash.get": "^4.4.2"
  }
}
