{ "name": "setup-php", "version": "1.4.6", "private": false, "description": "Setup PHP for use with GitHub Actions", "main": "lib/setup-php.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "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.1", "fs": "0.0.1-security" }, "devDependencies": { "@types/jest": "^24.0.21", "@types/node": "^12.12.0", "husky": "^3.0.9", "jest": "^24.9.0", "jest-circus": "^24.9.0", "prettier": "^1.17.1", "ts-jest": "^24.1.0", "typescript": "^3.6.4" }, "husky": { "skipCI": true, "hooks": { "pre-commit": "npm run build && npm run format" } } }