{
  "name": "add-issues-to-project",
  "version": "0.1.1",
  "description": "Github action to automatically add all issues to the specified project board.",
  "main": "index.js",
  "scripts": {
    "build": "ncc build index.js",
    "release": "release-it --ci",
    "prerelease": "npm run build",
    "test": "npm run build && act issue.opened -j test-action -e test/issue.json --secret-file .secrets"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/matmar10/add-issues-to-project.git"
  },
  "keywords": [
    "Github",
    "action",
    "project",
    "ci",
    "cd",
    "ci/cd",
    "actions",
    "add",
    "to",
    "project",
    "github",
    "projects"
  ],
  "author": "Matthew J. Martin <matthew.mar10@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/matmar10/add-issues-to-project/issues"
  },
  "homepage": "https://github.com/matmar10/add-issues-to-project#readme",
  "dependencies": {
    "@actions/core": "^1.6.0",
    "@actions/github": "^5.0.1",
    "axios": "^0.26.1"
  },
  "devDependencies": {
    "@release-it/conventional-changelog": "^4.3.0",
    "@zeit/ncc": "^0.22.3",
    "eslint": "^8.13.0",
    "eslint-plugin-es-beautifier": "^1.0.1",
    "release-it": "^14.14.2"
  },
  "release-it": {
    "ci": true,
    "plugins": {
      "@release-it/conventional-changelog": {
        "infile": "CHANGELOG.md",
        "preset": {
          "name": "conventionalcommits",
          "types": [
            {
              "type": "feat",
              "section": "Features"
            },
            {
              "type": "fix",
              "section": "Bug Fixes"
            },
            {
              "type": "perf",
              "section": "Performance Improvements"
            },
            {
              "type": "revert",
              "section": "Reverts"
            },
            {
              "type": "docs",
              "section": "Documentation"
            },
            {
              "type": "style",
              "section": "Styles"
            },
            {
              "type": "refactor",
              "section": "Code Refactoring"
            },
            {
              "type": "test",
              "section": "Tests"
            },
            {
              "type": "build",
              "section": "Build System"
            },
            {
              "type": "ci",
              "section": "Continuous Integration"
            }
          ]
        }
      }
    },
    "git": {
      "commit": true,
      "tag": true,
      "push": true,
      "requireUpstream": false
    },
    "github": {
      "release": true
    },
    "npm": {
      "publish": true
    }
  }
}
