-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"private": true,
"name": "actions-commit-lint",
"version": "0.0.0-semantically-released",
"description": "commitlint your PRs with a default configuration auto applied",
"author": "KhulnaSoft DevOps <[email protected]> (https://www.khulnasoft.com)",
"homepage": "https://github.com/khulnasoft-lab/action-commit-lint",
"repository": {
"type": "git",
"url": "https://github.com/khulnasoft-lab/action-commit-lint.git"
},
"bugs": {
"url": "https://github.com/khulnasoft-lab/action-commit-lint/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/khulnasoft"
},
"license": "MIT",
"keywords": [
"github",
"action",
"commit",
"lint"
],
"engines": {
"node": ">=16"
},
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "tap test --no-coverage",
"test:watch": "tap test --watch",
"test:ci": "tap test --100",
"test:report": "opener coverage/lcov-report/index.html"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@commitlint/config-angular": "^v17.8.1",
"@commitlint/config-angular-type-enum": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/config-lerna-scopes": "^17.8.1",
"@commitlint/config-patternplate": "^17.8.1",
"@commitlint/lint": "^17.8.1",
"@commitlint/load": "^17.8.1"
},
"devDependencies": {
"sinon": "^15.2.0",
"tap": "^16.3.7"
}
}