setup-php/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2019-09-06 06:47:43 +07:00
{
"name": "setup-php",
"version": "2.12.0",
2019-09-06 06:47:43 +07:00
"private": false,
"description": "Setup PHP for use with GitHub Actions",
"main": "lib/install.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",
"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": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1",
2019-10-11 06:11:25 +07:00
"fs": "0.0.1-security"
2019-09-06 06:47:43 +07:00
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@vercel/ncc": "^0.28.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
2019-09-06 06:47:43 +07:00
},
"husky": {
"skipCI": true,
"hooks": {
2020-05-16 12:58:01 +07:00
"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
}
}
}