{ "name": "setup-php", "version": "2.1.4", "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.3", "@actions/exec": "^1.0.3", "@actions/io": "^1.0.2", "fs": "0.0.1-security" }, "devDependencies": { "@types/jest": "^25.2.1", "@types/node": "^13.11.1", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "@zeit/ncc": "^0.22.1", "eslint": "^6.8.0", "eslint-config-prettier": "^6.10.1", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jest": "^23.8.2", "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.3", "jest": "^25.3.0", "jest-circus": "^25.3.0", "prettier": "^1.19.1", "ts-jest": "^25.3.1", "typescript": "^3.8.3" }, "husky": { "skipCI": true, "hooks": { "pre-commit": "npm run format && npm run lint && npm run build && npm run release" } } }