mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 11:51:07 +07:00
7958a5ccff
Sync tsconfig.json with v2 Update dependencies
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "setup-php",
|
|
"version": "1.11.3",
|
|
"private": false,
|
|
"description": "Setup PHP for use with GitHub Actions",
|
|
"main": "lib/install.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint **/*.ts --cache --fix",
|
|
"format": "prettier --write **/*.ts && git add .",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"release": "ncc build -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.5.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/io": "^1.1.1",
|
|
"fs": "0.0.1-security"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.1",
|
|
"@types/node": "^16.7.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.2",
|
|
"@typescript-eslint/parser": "^4.29.2",
|
|
"@vercel/ncc": "^0.29.2",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.24.1",
|
|
"eslint-plugin-jest": "^24.4.0",
|
|
"eslint-plugin-prettier": "^3.4.1",
|
|
"husky": "^4.3.8",
|
|
"jest": "^27.0.6",
|
|
"jest-circus": "^27.0.6",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"husky": {
|
|
"skipCI": true,
|
|
"hooks": {
|
|
"pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run release"
|
|
}
|
|
}
|
|
}
|