forked from castastrophe/actions-pr-auto-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.38 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
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
85
86
87
88
{
"private": "true",
"name": "actions-pr-auto-update",
"version": "1.1.0",
"description": "A configurable GitHub Action to keep pull requests up-to-date.",
"license": "MIT",
"author": "Cassondra Roberts <castastrophe@users.noreply.github.com> (https://allons-y.llc)",
"contributors": [
"Max Komarychev"
],
"homepage": "https://github.com/castastrophe/actions-pr-auto-update#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/castastrophe/actions-pr-auto-update.git"
},
"bugs": {
"url": "https://github.com/castastrophe/actions-pr-auto-update/issues"
},
"main": "bin/index.js",
"files": [
"bin/index.js"
],
"scripts": {
"build": "tsc && ncc build -o bin src/index.ts",
"clean": "rm -rf bin",
"coverage": "echo '🚧 Tests coming soon'",
"lint": "yarn lint-staged",
"precommit": "lint-staged",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "echo '🚧 Tests coming soon'",
"debug": "ts-node src/index.ts"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vercel/ncc": "^0.36.1",
"colors": "^1.4.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-package-json": "^2.8.0",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"keywords": [
"actions",
"auto-update",
"github",
"pull-request",
"update"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"funding": [
{
"type": "github",
"url": " https://github.com/sponsors/castastrophe"
}
],
"lint-staged": {
"*": "prettier --write",
"package.json": "prettier-package-json --write",
"*.ts,__*__/*.ts": "eslint --fix"
}
}