-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.91 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.91 KB
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
{
"name": "@mridang/action-commit-lint",
"version": "1.0.7",
"type": "module",
"scripts": {
"prepack": "tsc",
"build": "rollup --config=rollup.config.mjs",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --verbose --config=jest.config.mjs --runInBand",
"test:watch": "npm run test -- --watch",
"test:debug": "jest --verbose --config=jest.config.mjs --runInBand --detectOpenHandles",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"keywords": [
"semver",
"nodejs",
"semantic-release"
],
"author": {
"name": "Mridang Agarwalla",
"email": "mridang.agarwalla@gmail.com",
"url": "https://github.com/mridang"
},
"files": [
"dist"
],
"license": "Apache-2.0",
"description": "GitHub Action that auto-installs commitlint configs/plugins, lints recent commits and posts a colored summary report.",
"private": false,
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mridang/action-commit-lint.git"
},
"homepage": "https://github.com/mridang/action-commit-lint",
"bugs": "https://github.com/mridang/action-commit-lint/issues",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@commitlint/lint": "^19.8.1",
"@commitlint/load": "^19.8.1",
"@octokit/webhooks-types": "^7.6.1",
"@semantic-release/error": "^4.0.0",
"cosmiconfig": "^9.0.0",
"resolve-from": "^5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@jest/globals": "^29.7.0",
"@mridang/eslint-defaults": "^1.4.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.18.12",
"axios": "^1.9.0",
"eslint": "^9.0.0",
"jest": "^30.0.3",
"jest-junit": "^16.0.0",
"jsonwebtoken": "^9.0.2",
"knip": "^5.43.6",
"nock": "^14.0.5",
"prettier": "^3.1.1",
"rollup": "^4.42.0",
"semantic-release": "^25.0.1",
"semantic-release-major-tag": "^0.3.2",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"undici": "^7.10.0",
"yaml": "^2.8.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"publishConfig": {
"access": "public"
}
}