This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
forked from ridedott/merge-me-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.9 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
95
96
97
98
99
{
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"micromatch": "^4.0.4"
},
"description": "Automatically merges Pull Requests.",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@ridedott/eslint-config": "^2.13.22",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.1",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^27.4.0",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.0.1",
"@vercel/ncc": "^0.33.1",
"commitizen": "^4.2.4",
"cspell": "^5.18.4",
"eslint": "^7.32.0",
"http-status-codes": "^2.2.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^11.2.6",
"nock": "^13.2.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"semantic-release": "^17.4.7",
"ts-jest": "^26.5.6",
"ts-node": "^10.5.0"
},
"engines": {
"node": "12 || >=14",
"npm": ">=7"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run husky:pre-commit"
}
},
"license": "UNLICENSED",
"lint-staged": {
"*.ts": [
"eslint"
],
"*.{json,md,ts,yml,yaml}": [
"prettier --write"
]
},
"main": "./dist/index.js",
"name": "@ridedott/merge-me-action",
"private": false,
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "[email protected]:ridedott/merge-me-action.git"
},
"scripts": {
"build": "run-s clean:dist build:dist",
"build:dist": "ncc build ./src/index.ts --minify --source-map --v8-cache",
"build:ts": "tsc --project tsconfig.production.json",
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
"clean": "run-p clean:*",
"clean:dist": "rm -rf dist",
"clean:lib": "rm -rf lib",
"cz": "git-cz",
"cz:retry": "git-cz --retry",
"format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'",
"format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
"husky:lint-staged": "lint-staged",
"husky:pre-commit": "run-p spellcheck husky:lint-staged",
"lint": "eslint --resolve-plugins-relative-to './node_modules/@ridedott/eslint-config' '**/*.ts'",
"lint:fix": "eslint --fix --resolve-plugins-relative-to './node_modules/@ridedott/eslint-config' '**/*.ts'",
"semantic-release": "semantic-release",
"spellcheck": "cspell '**/*'",
"test": "jest",
"test:ci": "jest --ci --collect-coverage",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch --verbose false",
"types": "tsc --noEmit"
},
"version": "2.9.107"
}