-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "wp-post-action",
"version": "0.0.3",
"description": "Detects markdown files (.md) that have been changed in commits, and posts articles and uploads images to the set wordpress.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"release": "ncc build src/wp-post-action.ts && git add -f dist/",
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:build\"",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"test": "jest --testTimeout 10000",
"textlint": "npx textlint ./posts/**/*.md"
},
"keywords": [
"Actions",
"GitHub",
"Wordpress",
"Post",
"Markdown"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/rest": "^19.0.7"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^12.12.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/typescript-estree": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"concurrently": "^5.2.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.0",
"glob": "^8.0.3",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"prettier": "^2.8.1",
"textlint": "^13.3.1",
"textlint-rule-ja-unnatural-alphabet": "^2.0.1",
"textlint-rule-ng-word": "^1.0.0",
"textlint-rule-preset-ja-spacing": "^2.3.0",
"textlint-rule-prh": "^5.3.0",
"ts-jest": "^29.0.3",
"wp-post": "^1.1.0",
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydro-cloud/wp-post-action.git"
},
"bugs": {
"url": "https://github.com/hydro-cloud/wp-post-action/issues"
},
"homepage": "https://github.com/hydro-cloud/wp-post-action#readme"
}