{
  "name": "create-pull-request",
  "version": "2.0.0",
  "private": true,
  "description": "Creates a pull request for changes to your repository in the actions workspace",
  "main": "lib/main.js",
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc && ncc build",
    "format": "prettier --write '**/*.ts'",
    "format-check": "prettier --check '**/*.ts'",
    "lint": "eslint src/**/*.ts",
    "test:unit": "jest unit",
    "test:int": "__test__/integration-tests.sh",
    "test": "npm run test:unit && npm run test:int",
    "pack-assets": "mkdir -p dist/cpr && cp -rv src/cpr/* dist/cpr",
    "vendor-deps": "pip download -r src/cpr/requirements.txt --no-binary=:all: -d dist/vendor",
    "package": "npm run build && npm run pack-assets && npm run vendor-deps"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/peter-evans/create-pull-request.git"
  },
  "keywords": [
    "actions",
    "pull",
    "request"
  ],
  "author": "Peter Evans",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/peter-evans/create-pull-request/issues"
  },
  "homepage": "https://github.com/peter-evans/create-pull-request",
  "dependencies": {
    "@actions/core": "1.2.4",
    "@actions/exec": "1.0.4",
    "@actions/tool-cache": "1.3.4",
    "is-docker": "2.0.0"
  },
  "devDependencies": {
    "@types/jest": "25.2.2",
    "@types/node": "14.0.1",
    "@typescript-eslint/parser": "2.33.0",
    "@zeit/ncc": "0.22.1",
    "eslint": "7.0.0",
    "eslint-plugin-github": "3.4.1",
    "eslint-plugin-jest": "23.11.0",
    "jest": "26.0.1",
    "jest-circus": "26.0.1",
    "js-yaml": "3.13.1",
    "prettier": "2.0.5",
    "ts-jest": "25.5.1",
    "typescript": "3.9.2"
  }
}