-
Notifications
You must be signed in to change notification settings - Fork 31
/
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.11.1",
"@actions/github": "^5.1.1",
"micromatch": "^4.0.8"
},
"description": "Automatically merges Pull Requests.",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@ridedott/eslint-config": "^2.27.40",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^27.5.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.8.9",
"@vercel/ncc": "^0.38.3",
"commitizen": "^4.3.1",
"cspell": "^8.16.0",
"eslint": "^8.57.1",
"http-status-codes": "^2.2.0",
"husky": "^9.1.7",
"jest": "^26.6.3",
"lint-staged": "^15.2.10",
"nock": "^13.5.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"semantic-release": "^24.2.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2"
},
"engines": {
"node": "20",
"npm": ">=9"
},
"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.10.111"
}