setup-php/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

2019-09-06 06:47:43 +07:00
{
"name": "setup-php",
"version": "2.31.1",
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 __tests__/ ",
"format-check": "prettier --check **/src/*.ts **/__tests__/*.ts",
2024-03-25 02:35:36 +07:00
"release": "ncc build -m -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": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
2023-08-25 05:55:04 +07:00
"compare-versions": "^6.1.0"
2019-09-06 06:47:43 +07:00
},
"devDependencies": {
2024-03-01 13:33:30 +07:00
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vercel/ncc": "^0.38.1",
2024-03-01 13:33:30 +07:00
"eslint": "^8.57.0",
2024-01-15 05:10:39 +07:00
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
2024-01-15 05:10:39 +07:00
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
2024-03-01 13:33:30 +07:00
"nock": "^13.5.4",
"prettier": "^3.3.2",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
},
"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
}
}