setup-php/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2019-09-06 05:17:43 +05:30
{
"name": "setup-php",
2020-05-08 05:41:00 +05:30
"version": "2.2.0",
2019-09-06 05:17:43 +05:30
"private": false,
"description": "Setup PHP for use with GitHub Actions",
2019-11-24 05:14:53 +05:30
"main": "dist/index.js",
2019-09-06 05:17:43 +05:30
"scripts": {
"build": "tsc",
2019-11-24 02:04:12 +05:30
"lint": "eslint **/*.ts --cache",
2019-11-30 23:34:27 +05:30
"format": "prettier --write **/*.ts && git add .",
2019-09-06 05:17:43 +05:30
"format-check": "prettier --check **/*.ts",
2019-11-24 05:14:53 +05:30
"release": "ncc build src/install.ts -o dist && git add -f dist/",
2019-09-06 05:17:43 +05:30
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shivammathur/setup-php.git"
},
"keywords": [
"actions",
"php",
"setup"
],
"author": "shivammathur",
"license": "MIT",
"dependencies": {
2020-05-08 05:41:00 +05:30
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
2020-02-03 04:07:28 +05:30
"@actions/io": "^1.0.2",
2019-10-11 04:41:25 +05:30
"fs": "0.0.1-security"
2019-09-06 05:17:43 +05:30
},
"devDependencies": {
2020-04-09 21:53:30 +05:30
"@types/jest": "^25.2.1",
2020-05-08 05:41:00 +05:30
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
2020-04-09 21:53:30 +05:30
"@zeit/ncc": "^0.22.1",
2020-05-08 05:41:00 +05:30
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
2020-04-09 21:53:30 +05:30
"eslint-plugin-import": "^2.20.2",
2020-05-08 05:41:00 +05:30
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
2019-09-06 05:17:43 +05:30
},
"husky": {
"skipCI": true,
"hooks": {
2020-05-16 11:28:01 +05:30
"pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run release"
2019-09-06 05:17:43 +05:30
}
}
}