martijnversluis/ChordFiddle

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "ChordFiddle",
  "version": "2.3.0",
  "description": "ChordPro editor. Transpose your chord sheet. Convert ChordPro to chord sheet.",
  "private": true,
  "scripts": {
    "test": "yarn lint",
    "lint": "node_modules/.bin/eslint --ext .js .",
    "lint:fix": "node_modules/.bin/eslint --fix --ext .js .",
    "build": "webpack --env production",
    "prepublishOnly": "yarn install && yarn test && yarn build",
    "start": "webpack serve --open"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/martijnversluis/chordfiddle.git"
  },
  "keywords": [
    "javascript",
    "chords",
    "parsing",
    "convert",
    "chord-sheet",
    "chordpro"
  ],
  "author": "martijnversluis@gmail.com",
  "license": "GPL-3.0",
  "bugs": {
    "url": "https://github.com/martijnversluis/chordfiddle/issues"
  },
  "homepage": ".",
  "githubHome": "https://github.com/martijnversluis/ChordFiddle",
  "about": "https://github.com/martijnversluis/ChordFiddle/blob/master/README.md#chordfiddle",
  "dependencies": {
    "chordjs": "^2.0.1",
    "chordsheetjs": "^7.17.0",
    "lz-string": "^1.5.0",
    "query-string": "^8.1.0"
  },
  "devDependencies": {
    "babel-eslint": "^10.1.0",
    "css-loader": "^6.7.3",
    "eslint": "^8.37.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.27.5",
    "handlebars-webpack-plugin": "^2.2.1",
    "sass": "^1.60.0",
    "sass-loader": "^13.2.2",
    "style-loader": "^3.3.2",
    "webpack": "^5.77.0",
    "webpack-cli": "^5.0.1",
    "webpack-dev-server": "^4.13.1"
  },
  "browserify": {
    "transform": [
      [
        "babelify",
        {
          "presets": [
            "@babel/preset-env"
          ],
          "plugins": [
            "@babel/plugin-proposal-class-properties"
          ]
        }
      ]
    ]
  }
}