2019-09-06 06:47:43 +07:00
|
|
|
{
|
|
|
|
"name": "setup-php",
|
2020-11-16 04:56:02 +07:00
|
|
|
"version": "1.10.0",
|
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",
|
2019-11-24 06:44:53 +07:00
|
|
|
"main": "dist/index.js",
|
2019-09-06 06:47:43 +07:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2020-10-31 16:25:27 +07:00
|
|
|
"lint": "eslint **/*.ts --cache --fix",
|
2019-12-01 01:04:27 +07:00
|
|
|
"format": "prettier --write **/*.ts && git add .",
|
2019-09-06 06:47:43 +07:00
|
|
|
"format-check": "prettier --check **/*.ts",
|
2019-11-24 06:44:53 +07:00
|
|
|
"release": "ncc build src/install.ts -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": {
|
2020-10-05 14:29:36 +07:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-05-13 23:30:42 +07:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-02-03 05:37:28 +07:00
|
|
|
"@actions/io": "^1.0.2",
|
2019-10-11 06:11:25 +07:00
|
|
|
"fs": "0.0.1-security"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-11-16 04:56:02 +07:00
|
|
|
"@types/jest": "^26.0.15",
|
|
|
|
"@types/node": "^14.14.7",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.7.0",
|
|
|
|
"@typescript-eslint/parser": "^4.7.0",
|
2020-06-08 08:39:31 +07:00
|
|
|
"@zeit/ncc": "^0.22.3",
|
2020-11-16 04:56:02 +07:00
|
|
|
"eslint": "^7.13.0",
|
|
|
|
"eslint-config-prettier": "^6.15.0",
|
2020-10-05 14:29:36 +07:00
|
|
|
"eslint-plugin-import": "^2.22.1",
|
2020-11-16 04:56:02 +07:00
|
|
|
"eslint-plugin-jest": "^24.1.3",
|
2020-06-19 19:31:40 +07:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-10-05 14:29:36 +07:00
|
|
|
"husky": "^4.3.0",
|
2020-11-16 04:56:02 +07:00
|
|
|
"jest": "^26.6.3",
|
|
|
|
"jest-circus": "^26.6.3",
|
2020-10-05 14:29:36 +07:00
|
|
|
"prettier": "^2.1.2",
|
2020-11-16 04:56:02 +07:00
|
|
|
"ts-jest": "^26.4.4",
|
|
|
|
"typescript": "^4.0.5"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"skipCI": true,
|
|
|
|
"hooks": {
|
2020-01-26 17:51:25 +07:00
|
|
|
"pre-commit": "npm run format && npm run lint && npm run build && npm run release"
|
2019-09-06 06:47:43 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|