forked from JamesIves/github-pages-deploy-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 KB
/
package.json
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
{
"name": "@jamesives/github-pages-deploy-action",
"description": "GitHub action for building a project and deploying it to GitHub pages.",
"author": "James Ives <[email protected]> (https://jamesiv.es)",
"version": "4.1.4",
"license": "MIT",
"main": "lib/lib.js",
"types": "lib/lib.d.ts",
"scripts": {
"build": "rimraf lib && tsc --declaration",
"test": "jest",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"lint:format": "prettier --write './**/*.{ts,js,json,yml,md}' './*.{ts,js,json,yml,md}'"
},
"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.4.0",
"@actions/exec": "1.1.0",
"@actions/github": "5.0.0",
"@actions/io": "1.1.1"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "16.4.3",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.5",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "26.6.3",
"jest-circus": "27.0.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"typescript": "4.3.5"
}
}