tdreyno/pretty-please

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@tdreyno/pretty-please",
  "version": "1.3.0",
  "main": "build/index.js",
  "typings": "build/index.d.ts",
  "repository": "https://github.com/tdreyno/pretty-please.git",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "lint": "eslint -c .eslintrc.js --ext .ts src",
    "build": "pika build && yarn compress",
    "compress": "terser pkg/dist-web/index.js -o pkg/dist-web/index.min.js --source-map --mangle --compress passes=2 --toplevel --mangle-props regex=/_$/ && gzip-size pkg/dist-web/index.min.js",
    "test": "jest --runInBand",
    "version": "yarn run build",
    "coverage": "jest --runInBand --coverage --coverageDirectory '../coverage'",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "prepare": "husky install"
  },
  "engines": {
    "node": ">=14"
  },
  "@pika/pack": {
    "pipeline": [
      [
        "@pika/plugin-ts-standard-pkg",
        {
          "exclude": [
            "__tests__/**/*"
          ]
        }
      ],
      [
        "@pika/plugin-build-node"
      ],
      [
        "@pika/plugin-build-web"
      ]
    ]
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "eslint -c .eslintrc.js --ext .ts src --fix",
      "prettier --write"
    ],
    "*.{css,md}": [
      "prettier --write"
    ]
  },
  "volta": {
    "node": "14.17.0",
    "yarn": "1.22.4"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.3.0",
    "@commitlint/config-conventional": "^19.0.3",
    "@commitlint/prompt": "^19.3.0",
    "@pika/pack": "^0.5.0",
    "@pika/plugin-build-node": "^0.9.2",
    "@pika/plugin-build-web": "^0.9.2",
    "@pika/plugin-ts-standard-pkg": "^0.9.2",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^10.0.5",
    "@types/jest": "^27.4.1",
    "@types/react": "^18.3.1",
    "@typescript-eslint/eslint-plugin": "^7.11.0",
    "@typescript-eslint/parser": "^7.11.0",
    "commitizen": "^4.3.0",
    "cz-conventional-changelog": "3.3.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "gzip-size-cli": "^5.0.0",
    "husky": "^8.0.3",
    "jest": "^27.5.1",
    "lint-staged": "^15.2.2",
    "prettier": "^3.1.0",
    "semantic-release": "^21.1.1",
    "terser": "^5.28.1",
    "ts-jest": "^27.1.4",
    "ts-toolbelt": "^9.6.0",
    "typescript": "^4.9.5"
  },
  "dependencies": {},
  "peerDependencies": {
    "react": ">=16.0.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}