setup-php/package.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2019-09-06 06:47:43 +07:00
{
"name": "setup-php",
2022-07-06 01:25:52 +07:00
"version": "2.20.0",
2019-09-06 06:47:43 +07:00
"private": false,
"description": "Setup PHP for use with GitHub Actions",
"main": "lib/install.js",
"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",
"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",
"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-07-06 01:25:52 +07:00
"@actions/core": "^1.9.0",
"@actions/exec": "^1.1.1",
2022-04-17 12:23:49 +07:00
"@actions/io": "^1.1.2"
2019-09-06 06:47:43 +07:00
},
"devDependencies": {
2022-07-06 01:25:52 +07:00
"@types/jest": "^28.1.4",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
2022-05-30 09:04:27 +07:00
"@vercel/ncc": "^0.34.0",
2022-07-06 01:25:52 +07:00
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
2022-04-09 22:22:11 +07:00
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
2022-07-06 01:25:52 +07:00
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"jest-circus": "^28.1.2",
"nock": "^13.2.8",
"prettier": "^2.7.1",
2022-05-30 09:04:27 +07:00
"simple-git-hooks": "^2.8.0",
2022-07-06 01:25:52 +07:00
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"bugs": {
"url": "https://github.com/shivammathur/setup-php/issues"
2019-09-06 06:47:43 +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
}
}