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",
"version": "1.11.5",
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 --cache --fix",
"format": "prettier --write **/src/*.ts && git add .",
"format-check": "prettier --check **/src/*.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.5.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": "^27.0.2",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.2",
"jest-circus": "^27.2.2",
"prettier": "^2.4.1",
"simple-git-hooks": "^2.6.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.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
}
}