github-pages-deploy-action/package.json

55 lines
1.4 KiB
JSON
Raw 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)",
2020-05-17 06:18:30 +08:00
"version": "3.5.2",
"license": "MIT",
"main": "lib/lib.js",
"types": "lib/lib.d.ts",
2019-08-26 23:45:48 +08:00
"scripts": {
"build": "rm -rf lib && tsc --declaration",
"test": "jest",
2020-03-07 11:36:56 +08:00
"lint": "eslint src/**/*.ts",
"format": "prettier --write './**/*.ts'"
},
"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.2.4",
"@actions/exec": "1.0.4",
"@actions/github": "2.2.0",
"@actions/io": "1.0.2"
},
"devDependencies": {
"@types/jest": "25.2.2",
"@types/node": "14.0.1",
"eslint": "7.0.0",
2020-04-02 00:58:25 +08:00
"eslint-plugin-github": "3.4.1",
"eslint-plugin-jest": "23.11.0",
2020-04-02 00:58:25 +08:00
"eslint-plugin-prettier": "^3.1.2",
"jest": "25.5.4",
"jest-circus": "26.0.1",
"prettier": "2.0.5",
"ts-jest": "25.5.1",
"typescript": "3.9.2"
2019-08-26 23:45:48 +08:00
}
}