martijnversluis/ChordJS

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "chordjs",
  "author": "Martijn Versluis",
  "version": "2.1.0",
  "description": "A simple JavaScript chord parsing and manipulation tool",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/martijnversluis/ChordJS.git"
  },
  "bugs": {
    "url": "https://github.com/martijnversluis/ChordJS/issues"
  },
  "homepage": "https://github.com/martijnversluis/ChordJS",
  "devDependencies": {
    "@babel/cli": "^7.10.1",
    "@babel/core": "^7.10.2",
    "@babel/plugin-transform-runtime": "^7.10.1",
    "@babel/preset-env": "^7.10.2",
    "babel-eslint": "^10.1.0",
    "babel-plugin-handlebars-inline-precompile": "^2.1.1",
    "eslint": "^8.8.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.21.2",
    "jest": "^28.0.1"
  },
  "scripts": {
    "jest": "jest",
    "jest:watch": "jest --watch",
    "jest:coverage": "jest --coverage --coverageDirectory='coverage'",
    "jest:debug": "node --nolazy --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --colors --verbose",
    "test": "yarn lint && yarn jest",
    "lint": "node_modules/.bin/eslint --ext .js .",
    "lint:fix": "node_modules/.bin/eslint --fix --ext .js .",
    "build:sources": "babel src --out-dir lib",
    "build": "yarn build:sources",
    "prepublishOnly": "yarn install && yarn test && yarn build",
    "postinstall": "echo \"ChordJS has been merged into ChordSheetJS. ChordJS will not receive updates. See: https://github.com/martijnversluis/ChordJS#readme\""
  },
  "dependencies": {}
}