2019-09-06 06:47:43 +07:00
|
|
|
{
|
|
|
|
"name": "setup-php",
|
2019-11-08 17:26:57 +07:00
|
|
|
"version": "1.5.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-09-06 06:47:43 +07:00
|
|
|
"main": "lib/setup-php.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/shivammathur/setup-php.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"php",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "shivammathur",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-10-30 10:46:37 +07:00
|
|
|
"@actions/core": "^1.2.0",
|
|
|
|
"@actions/exec": "^1.0.1",
|
2019-10-11 06:11:25 +07:00
|
|
|
"fs": "0.0.1-security"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-10-30 10:46:37 +07:00
|
|
|
"@types/jest": "^24.0.21",
|
|
|
|
"@types/node": "^12.12.0",
|
|
|
|
"husky": "^3.0.9",
|
2019-09-26 04:03:39 +07:00
|
|
|
"jest": "^24.9.0",
|
|
|
|
"jest-circus": "^24.9.0",
|
2019-09-06 06:47:43 +07:00
|
|
|
"prettier": "^1.17.1",
|
2019-09-26 04:03:39 +07:00
|
|
|
"ts-jest": "^24.1.0",
|
2019-10-30 10:46:37 +07:00
|
|
|
"typescript": "^3.6.4"
|
2019-09-06 06:47:43 +07:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"skipCI": true,
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "npm run build && npm run format"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|