-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.63 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
{
"name": "actions",
"version": "0.0.0",
"private": true,
"description": "Collection of :octocat: GitHub actions",
"keywords": [
"github",
"actions"
],
"homepage": "https://github.com/clowdhaus/actions#readme",
"bugs": {
"url": "https://github.com/clowdhaus/actions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clowdhaus/actions.git"
},
"license": "Apache-2.0",
"author": "Clowd Haus, LLC",
"workspaces": [
"pr-title"
],
"scripts": {
"all": "yarn lint && yarn build",
"build": "lerna run build",
"lint": "eslint 'pr-title/index.ts' --fix",
"release": "lerna version --conventional-commits --create-release github --yes"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-rebase": "HUSKY_SKIP_HOOKS=1"
}
},
"lint-staged": {
"*.(js|ts)": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.8",
"@vercel/ncc": "^0.38.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.2.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"resolutions": {
"tar": ">=6.2.1"
},
"command": {
"version": {
"allowBranch": "main"
}
}
}