-
-
Notifications
You must be signed in to change notification settings - Fork 445
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.31 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "actions-github-pages",
"version": "4.1.0",
"description": "GitHub Actions for GitHub Pages",
"main": "lib/index.js",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"prepare": "husky",
"all": "npm run format && npm run lint && npm test",
"lint": "eslint ./{src,__tests__}/**/*.ts",
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --verbose --detectOpenHandles",
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --outfile=lib/index.js --minify",
"tsc": "tsc --noEmit",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"release": "standard-version"
},
"lint-staged": {
"{src,__tests__}/**/*.ts": [
"prettier --check",
"eslint"
],
"README.md": [
"npx doctoc@2.1.0 --github"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peaceiris/actions-gh-pages.git"
},
"keywords": [
"GitHub Actions",
"Actions",
"JavaScript Action",
"TypeScript Action",
"GitHub Pages",
"gh-pages"
],
"author": "peaceiris",
"license": "MIT",
"bugs": {
"url": "https://github.com/peaceiris/actions-gh-pages/issues"
},
"homepage": "https://github.com/peaceiris/actions-gh-pages#readme",
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.1",
"@actions/glob": "0.7.0",
"@actions/io": "3.0.2",
"shelljs": "0.10.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/js-yaml": "4.0.9",
"@types/node": "25.7.0",
"@types/shelljs": "0.10.0",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"esbuild": "0.28.0",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.6.0",
"husky": "9.1.7",
"jest": "30.4.2",
"jest-circus": "30.4.2",
"js-yaml": "4.1.1",
"lint-staged": "17.0.4",
"prettier": "3.8.3",
"standard-version": "9.5.0",
"ts-jest": "29.4.9",
"typescript": "6.0.3"
},
"overrides": {
"trim-newlines": "5.0.0"
}
}