2019-09-06 05:17:43 +05:30
|
|
|
{
|
|
|
|
"name": "setup-php",
|
2024-11-04 08:55:26 +05:30
|
|
|
"version": "2.32.0",
|
2019-09-06 05:17:43 +05:30
|
|
|
"private": false,
|
2019-10-29 06:03:19 +05:30
|
|
|
"description": "Setup PHP for use with GitHub Actions",
|
2021-04-26 15:12:09 +05:30
|
|
|
"main": "lib/install.js",
|
2021-09-10 03:08:04 +05:30
|
|
|
"types": "lib/install.d.ts",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "__tests__",
|
|
|
|
"src": "src"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
2019-09-06 05:17:43 +05:30
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2022-01-29 05:39:57 +05:30
|
|
|
"lint": "eslint **/src/*.ts **/__tests__/*.ts --cache --fix",
|
2022-07-08 04:14:03 +05:30
|
|
|
"format": "prettier --write **/src/*.ts **/__tests__/*.ts && git add -f __tests__/ ",
|
2022-01-29 05:39:57 +05:30
|
|
|
"format-check": "prettier --check **/src/*.ts **/__tests__/*.ts",
|
2024-03-25 01:05:36 +05:30
|
|
|
"release": "ncc build -m -o dist && git add -f dist/",
|
2019-09-06 05:17:43 +05:30
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/shivammathur/setup-php.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"php",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "shivammathur",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2024-11-04 08:55:26 +05:30
|
|
|
"@actions/core": "^1.11.1",
|
2022-03-22 19:30:07 +05:30
|
|
|
"@actions/exec": "^1.1.1",
|
2023-06-12 10:55:01 +05:30
|
|
|
"@actions/io": "^1.1.3",
|
2024-07-14 02:48:56 +05:30
|
|
|
"compare-versions": "^6.1.1"
|
2019-09-06 05:17:43 +05:30
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-12-26 18:03:23 +05:30
|
|
|
"@eslint/compat": "^1.2.4",
|
|
|
|
"@eslint/js": "9.17.0",
|
2024-11-04 08:55:26 +05:30
|
|
|
"@types/jest": "^29.5.14",
|
2024-12-26 18:03:23 +05:30
|
|
|
"@types/node": "^22.10.2",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
|
|
"@typescript-eslint/parser": "^8.18.2",
|
2024-11-18 19:32:14 +05:30
|
|
|
"@vercel/ncc": "^0.38.3",
|
2024-12-26 18:03:23 +05:30
|
|
|
"eslint": "9.17.0",
|
2024-01-15 03:40:39 +05:30
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-11-04 08:55:26 +05:30
|
|
|
"eslint-plugin-import": "^2.31.0",
|
2024-12-26 18:03:23 +05:30
|
|
|
"eslint-plugin-jest": "^28.10.0",
|
2024-11-04 08:55:26 +05:30
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
2024-12-26 18:03:23 +05:30
|
|
|
"globals": "^15.14.0",
|
2023-10-30 01:47:34 +05:30
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-circus": "^29.7.0",
|
2024-11-18 19:32:14 +05:30
|
|
|
"nock": "^13.5.6",
|
2024-12-26 18:03:23 +05:30
|
|
|
"prettier": "^3.4.2",
|
2024-03-31 03:53:16 +05:30
|
|
|
"simple-git-hooks": "^2.11.1",
|
2024-11-04 08:55:26 +05:30
|
|
|
"ts-jest": "^29.2.5",
|
2024-12-26 18:03:23 +05:30
|
|
|
"typescript": "^5.7.2"
|
2023-07-02 02:34:06 +05:30
|
|
|
},
|
2021-09-10 03:08:04 +05:30
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/shivammathur/setup-php/issues"
|
2019-09-06 05:17:43 +05:30
|
|
|
},
|
2021-09-21 08:33:02 +05:30
|
|
|
"simple-git-hooks": {
|
|
|
|
"pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run release"
|
2019-09-06 05:17:43 +05:30
|
|
|
}
|
|
|
|
}
|