{ "name": "setup-php", "version": "1.7.3", "private": false, "description": "Setup PHP for use with GitHub Actions", "main": "dist/index.js", "scripts": { "build": "tsc", "lint": "eslint **/*.ts --cache", "format": "prettier --write **/*.ts && git add .", "format-check": "prettier --check **/*.ts", "release": "ncc build src/install.ts -o dist && git add -f dist/", "test": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/shivammathur/setup-php.git" }, "keywords": [ "actions", "php", "setup" ], "author": "shivammathur", "license": "MIT", "dependencies": { "@actions/core": "^1.2.0", "@actions/exec": "^1.0.2", "@actions/io": "^1.0.1", "fs": "0.0.1-security" }, "devDependencies": { "@types/jest": "^24.0.21", "@types/node": "^12.12.16", "@typescript-eslint/eslint-plugin": "^2.11.0", "@typescript-eslint/parser": "^2.11.0", "@zeit/ncc": "^0.21.0", "eslint": "^6.6.0", "eslint-config-prettier": "^6.5.0", "eslint-plugin-import": "^2.19.1", "eslint-plugin-jest": "^23.0.3", "eslint-plugin-prettier": "^3.1.1", "husky": "^3.0.9", "jest": "^24.9.0", "jest-circus": "^24.9.0", "prettier": "^1.17.1", "ts-jest": "^24.1.0", "typescript": "^3.7.3" }, "husky": { "skipCI": true, "hooks": { "pre-commit": "npm run build && npm run format && npm run release" } } }