2019-09-06 06:47:43 +07:00
|
|
|
{
|
|
|
|
"name": "setup-php",
|
2022-03-01 00:02:59 +07:00
|
|
|
"version": "2.17.1",
|
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",
|
|
|
|
"format": "prettier --write **/src/*.ts **/__tests__/*.ts && git add -f src/",
|
|
|
|
"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": {
|
2021-11-26 01:45:10 +07:00
|
|
|
"@actions/core": "^1.6.0",
|
2021-07-14 16:08:18 +07:00
|
|
|
"@actions/exec": "^1.1.0",
|
|
|
|
"@actions/io": "^1.1.1",
|
2019-10-11 06:11:25 +07:00
|
|
|
"fs": "0.0.1-security"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-01 00:02:59 +07:00
|
|
|
"@types/jest": "^27.4.1",
|
|
|
|
"@types/node": "^17.0.21",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
|
|
"@typescript-eslint/parser": "^5.12.1",
|
|
|
|
"@vercel/ncc": "^0.33.3",
|
|
|
|
"eslint": "^8.10.0",
|
|
|
|
"eslint-config-prettier": "^8.4.0",
|
2022-02-02 16:03:09 +07:00
|
|
|
"eslint-plugin-import": "^2.25.4",
|
2022-03-01 00:02:59 +07:00
|
|
|
"eslint-plugin-jest": "^26.1.1",
|
2021-09-10 04:38:04 +07:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-08 19:53:38 +07:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
"jest-circus": "^27.5.1",
|
2022-02-05 13:11:01 +07:00
|
|
|
"nock": "^13.2.4",
|
2022-02-02 16:03:09 +07:00
|
|
|
"prettier": "^2.5.1",
|
2021-11-26 01:45:10 +07:00
|
|
|
"simple-git-hooks": "^2.7.0",
|
2022-02-02 16:03:09 +07:00
|
|
|
"ts-jest": "^27.1.3",
|
|
|
|
"typescript": "^4.5.5"
|
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
|
|
|
}
|
|
|
|
}
|