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": "1.11.1",
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.2.7",
2020-05-13 23:30:42 +07:00
"@actions/exec": "^1.0.4",
"@actions/io": "^1.1.0",
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.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.28.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
2020-10-05 14:29:36 +07:00
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
2020-11-16 04:56:02 +07:00
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
2019-09-06 06:47:43 +07:00
},
"husky": {
"skipCI": true,
"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
}
}
}