2019-09-06 05:17:43 +05:30
|
|
|
{
|
|
|
|
"name": "setup-php",
|
2019-11-30 05:23:14 +05:30
|
|
|
"version": "1.5.6",
|
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",
|
2019-11-24 05:14:53 +05:30
|
|
|
"main": "dist/index.js",
|
2019-09-06 05:17:43 +05:30
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2019-11-24 02:04:12 +05:30
|
|
|
"lint": "eslint **/*.ts --cache",
|
2019-09-06 05:17:43 +05:30
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2019-11-24 05:14:53 +05:30
|
|
|
"release": "ncc build src/install.ts -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": {
|
2019-10-30 09:16:37 +05:30
|
|
|
"@actions/core": "^1.2.0",
|
|
|
|
"@actions/exec": "^1.0.1",
|
2019-10-11 04:41:25 +05:30
|
|
|
"fs": "0.0.1-security"
|
2019-09-06 05:17:43 +05:30
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-10-30 09:16:37 +05:30
|
|
|
"@types/jest": "^24.0.21",
|
|
|
|
"@types/node": "^12.12.0",
|
2019-11-24 02:04:12 +05:30
|
|
|
"@typescript-eslint/eslint-plugin": "^2.7.0",
|
|
|
|
"@typescript-eslint/parser": "^2.7.0",
|
2019-11-24 05:14:53 +05:30
|
|
|
"@zeit/ncc": "^0.20.5",
|
2019-11-24 02:04:12 +05:30
|
|
|
"eslint": "^6.6.0",
|
|
|
|
"eslint-config-prettier": "^6.5.0",
|
|
|
|
"eslint-plugin-import": "^2.18.2",
|
|
|
|
"eslint-plugin-jest": "^23.0.3",
|
|
|
|
"eslint-plugin-prettier": "^3.1.1",
|
2019-10-30 09:16:37 +05:30
|
|
|
"husky": "^3.0.9",
|
2019-09-26 02:33:39 +05:30
|
|
|
"jest": "^24.9.0",
|
|
|
|
"jest-circus": "^24.9.0",
|
2019-09-06 05:17:43 +05:30
|
|
|
"prettier": "^1.17.1",
|
2019-09-26 02:33:39 +05:30
|
|
|
"ts-jest": "^24.1.0",
|
2019-10-30 09:16:37 +05:30
|
|
|
"typescript": "^3.6.4"
|
2019-09-06 05:17:43 +05:30
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"skipCI": true,
|
|
|
|
"hooks": {
|
2019-11-25 21:58:24 +05:30
|
|
|
"pre-commit": "npm run build && npm run format && npm run release"
|
2019-09-06 05:17:43 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|