github-pages-deploy-action/package.json

60 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2019-08-26 23:45:48 +08:00
{
2020-05-17 06:11:24 +08:00
"name": "@jamesives/github-pages-deploy-action",
2019-08-26 23:45:48 +08:00
"description": "GitHub action for building a project and deploying it to GitHub pages.",
2020-04-04 19:54:06 +08:00
"author": "James Ives <iam@jamesiv.es> (https://jamesiv.es)",
2023-11-28 11:11:57 +08:00
"version": "4.5.0",
"license": "MIT",
"main": "lib/lib.js",
"types": "lib/lib.d.ts",
2019-08-26 23:45:48 +08:00
"scripts": {
"build": "rimraf lib && tsc --declaration",
"test": "jest",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"lint:format": "prettier --write .",
"lint:format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesIves/github-pages-deploy-action.git"
},
"bugs": {
"url": "https://github.com/JamesIves/github-pages-deploy-action/issues"
},
"homepage": "https://github.com/JamesIves/github-pages-deploy-action",
"keywords": [
"actions",
"node",
"setup",
"build",
"deploy",
"gh-pages",
"pages",
"github",
"deploy",
"deployment"
],
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1",
"@actions/io": "1.1.3"
},
"devDependencies": {
"@types/jest": "27.5.0",
"@types/node": "20.10.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "26.6.3",
"jest-circus": "27.5.1",
"prettier": "2.8.8",
"rimraf": "4.1.2",
"ts-jest": "26.5.6",
"typescript": "4.9.5"
2019-08-26 23:45:48 +08:00
}
}