setup-php/package.json

47 lines
1009 B
JSON
Raw Normal View History

2019-09-06 06:47:43 +07:00
{
"name": "setup-php",
"version": "1.0.0",
"private": false,
"description": "Setup php action",
"main": "lib/setup-php.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"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.0.0",
"@actions/tool-cache": "^1.0.0",
"fs": "0.0.1-security",
2019-09-07 19:31:50 +07:00
"typed-rest-client": "^1.5.0",
2019-09-06 22:29:53 +07:00
"typescript": "^3.5.1"
2019-09-06 06:47:43 +07:00
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.17.1",
2019-09-06 22:29:53 +07:00
"ts-jest": "^24.0.2"
2019-09-06 06:47:43 +07:00
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run build && npm run format"
}
}
}