{ "name": "github-script", "description": "A GitHub action for executing a simple script", "version": "2.0.1", "author": "GitHub", "license": "MIT", "main": "dist/index.js", "private": true, "scripts": { "build": "ncc build src/main.ts", "format:check": "prettier --check src __test__", "format:write": "prettier --write src __test__", "lint": "eslint src __test__", "style:check": "run-p --continue-on-error --aggregate-output format:check lint", "style:write": "run-p --continue-on-error --aggregate-output format:write lint", "pre-commit": "run-s style:write test build", "test": "jest" }, "husky": { "hooks": { "pre-commit": "npm run pre-commit && git add dist/" } }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "globals": { "ts-jest": { "diagnostics": { "ignoreCodes": [ "151001" ] } } } }, "dependencies": { "@actions/core": "^1.2.4", "@actions/github": "^4.0.0", "@actions/io": "^1.0.2", "@octokit/core": "^3.1.2", "@octokit/plugin-paginate-rest": "^2.3.0", "@octokit/plugin-rest-endpoint-methods": "^4.1.2" }, "devDependencies": { "@types/jest": "^25.1.4", "@typescript-eslint/eslint-plugin": "^2.33.0", "@typescript-eslint/parser": "^2.33.0", "@zeit/ncc": "^0.22.0", "eslint": "^7.0.0", "eslint-config-prettier": "^6.11.0", "husky": "^4.2.5", "jest": "^25.1.0", "npm-run-all": "^4.1.5", "prettier": "^2.0.5", "ts-jest": "^25.2.1", "typescript": "^3.8.3" } }