Bump version to 1.11.5

Replace husky with simple-git-hooks

Update Node.js dependencies
This commit is contained in:
Shivam Mathur 2021-09-28 01:51:40 +05:30
parent 2c5cb7a75e
commit fbdd58c5bc
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A
2 changed files with 1084 additions and 1436 deletions

2491
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "setup-php", "name": "setup-php",
"version": "1.11.4", "version": "1.11.5",
"private": false, "private": false,
"description": "Setup PHP for use with GitHub Actions", "description": "Setup PHP for use with GitHub Actions",
"main": "lib/install.js", "main": "lib/install.js",
@ -40,30 +40,27 @@
"fs": "0.0.1-security" "fs": "0.0.1-security"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^27.0.1", "@types/jest": "^27.0.2",
"@types/node": "^16.9.1", "@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.31.0", "@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.31.0", "@typescript-eslint/parser": "^4.32.0",
"@vercel/ncc": "^0.31.0", "@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0", "eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2", "eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0", "eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0", "eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8", "jest": "^27.2.2",
"jest": "^27.1.1", "jest-circus": "^27.2.2",
"jest-circus": "^27.1.1", "prettier": "^2.4.1",
"prettier": "^2.4.0", "simple-git-hooks": "^2.6.1",
"ts-jest": "^27.0.5", "ts-jest": "^27.0.5",
"typescript": "^4.4.3" "typescript": "^4.4.3"
}, },
"bugs": { "bugs": {
"url": "https://github.com/shivammathur/setup-php/issues" "url": "https://github.com/shivammathur/setup-php/issues"
}, },
"husky": { "simple-git-hooks": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run release" "pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run release"
} }
} }
}