2019-09-06 06:47:43 +07:00
|
|
|
{
|
|
|
|
"name": "setup-php",
|
2023-05-24 17:32:56 +07:00
|
|
|
"version": "2.25.2",
|
2019-09-06 06:47:43 +07:00
|
|
|
"private": false,
|
2019-10-29 07:33:19 +07:00
|
|
|
"description": "Setup PHP for use with GitHub Actions",
|
2021-04-26 16:42:09 +07:00
|
|
|
"main": "lib/install.js",
|
2021-09-10 04:38:04 +07:00
|
|
|
"types": "lib/install.d.ts",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "__tests__",
|
|
|
|
"src": "src"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
2019-09-06 06:47:43 +07:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2022-01-29 07:09:57 +07:00
|
|
|
"lint": "eslint **/src/*.ts **/__tests__/*.ts --cache --fix",
|
2022-07-08 05:44:03 +07:00
|
|
|
"format": "prettier --write **/src/*.ts **/__tests__/*.ts && git add -f __tests__/ ",
|
2022-01-29 07:09:57 +07:00
|
|
|
"format-check": "prettier --check **/src/*.ts **/__tests__/*.ts",
|
2021-04-26 16:42:09 +07:00
|
|
|
"release": "ncc build -o dist && git add -f dist/",
|
2019-09-06 06:47:43 +07:00
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/shivammathur/setup-php.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"php",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "shivammathur",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2022-10-12 18:01:05 +07:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-03-22 21:00:07 +07:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-04-03 11:34:23 +07:00
|
|
|
"@actions/io": "^1.1.3"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-24 17:32:56 +07:00
|
|
|
"@types/jest": "^29.5.1",
|
|
|
|
"@types/node": "^20.2.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.7",
|
|
|
|
"@typescript-eslint/parser": "^5.59.7",
|
2023-01-27 09:11:01 +07:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-05-24 17:32:56 +07:00
|
|
|
"eslint": "^8.41.0",
|
2023-04-03 11:34:23 +07:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-01-24 22:53:58 +07:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2022-07-06 01:25:52 +07:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-04-03 11:34:23 +07:00
|
|
|
"jest": "^29.5.0",
|
|
|
|
"jest-circus": "^29.5.0",
|
2023-05-24 17:32:56 +07:00
|
|
|
"nock": "^13.3.1",
|
|
|
|
"prettier": "^2.8.8",
|
2022-10-24 09:27:20 +07:00
|
|
|
"simple-git-hooks": "^2.8.1",
|
2023-04-03 11:34:23 +07:00
|
|
|
"ts-jest": "^29.1.0",
|
2023-04-17 05:06:15 +07:00
|
|
|
"typescript": "^5.0.4"
|
2021-09-10 04:38:04 +07:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/shivammathur/setup-php/issues"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
2021-09-21 10:03:02 +07:00
|
|
|
"simple-git-hooks": {
|
|
|
|
"pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run release"
|
2019-09-06 06:47:43 +07:00
|
|
|
}
|
|
|
|
}
|