setup-php/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2019-09-06 06:47:43 +07:00
{
"name": "setup-php",
2020-01-17 15:15:04 +07:00
"version": "1.7.3",
2019-09-06 06:47:43 +07:00
"private": false,
"description": "Setup PHP for use with GitHub Actions",
2019-11-24 06:44:53 +07:00
"main": "dist/index.js",
2019-09-06 06:47:43 +07:00
"scripts": {
"build": "tsc",
2019-11-24 03:34:12 +07:00
"lint": "eslint **/*.ts --cache",
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",
2019-11-24 06:44:53 +07:00
"release": "ncc build src/install.ts -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.0",
2019-12-10 06:52:33 +07:00
"@actions/exec": "^1.0.2",
2019-12-19 12:08:24 +07:00
"@actions/io": "^1.0.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": "^24.0.21",
2019-12-10 06:52:33 +07:00
"@types/node": "^12.12.16",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"@zeit/ncc": "^0.21.0",
2019-11-24 03:34:12 +07:00
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
2019-12-10 06:52:33 +07:00
"eslint-plugin-import": "^2.19.1",
2019-11-24 03:34:12 +07:00
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
2019-09-06 06:47:43 +07:00
"prettier": "^1.17.1",
"ts-jest": "^24.1.0",
2019-12-06 10:43:56 +07:00
"typescript": "^3.7.3"
2019-09-06 06:47:43 +07:00
},
"husky": {
"skipCI": true,
"hooks": {
2019-11-25 23:28:24 +07:00
"pre-commit": "npm run build && npm run format && npm run release"
2019-09-06 06:47:43 +07:00
}
}
}