forked from gr2m/merge-schedule-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.24 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
89
90
91
92
93
94
{
"name": "merge-schedule-action",
"private": true,
"version": "0.0.0-development",
"description": "GitHub Action to merge pull requests on a scheduled day",
"repository": "github:gr2m/merge-schedule-action",
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"scripts": {
"prebuild": "npx rimraf dist",
"build": "ncc build lib/index.ts --license licenses.txt",
"lint": "eslint lib/**/*.ts",
"test": "vitest",
"test:ci": "vitest run"
},
"devDependencies": {
"@octokit/webhooks-types": "^5.8.0",
"@types/node": "^17.0.42",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"eslint-plugin-github": "^4.3.6",
"mockdate": "^3.0.5",
"msw": "^0.42.1",
"prettier": "^2.6.2",
"timezone-mock": "^1.3.2",
"typescript": "^4.7.3",
"vitest": "^0.14.2",
"vitest-mock-process": "^1.0.4"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": "dist",
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3"
},
"eslintConfig": {
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:github/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"i18n-text/no-en": "off",
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"camelcase": "off",
"@typescript-eslint/no-floating-promises": "off"
},
"env": {
"node": true,
"es6": true
},
"ignorePatterns": [
"dist/",
"node_modules/"
],
"overrides": [
{
"files": [
"*.test.ts"
],
"rules": {
"filenames/match-regex": "off"
}
}
]
},
"prettier": {},
"engines": {
"node": ">=16.15"
}
}