-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
117 lines (117 loc) · 3.26 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "commit-status-updater",
"version": "v1.1.0",
"description": "commit status updater",
"main": "lib/main.js",
"scripts": {
"semantic-release": "semantic-release",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"coverage": "jest --coverage=true",
"clean": "rm -rf node_modules && rm -rf lib && rm -rf coverage && rm -rf dist",
"all": "npm run clean && npm install && npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ouzi-dev/commit-status-updater.git"
},
"keywords": [
"github",
"actions",
"commit",
"status",
"updater"
],
"author": "GitHub",
"license": "Apache",
"bugs": {
"url": "https://github.com/ouzi-dev/commit-status-updater/issues"
},
"homepage": "https://github.com/ouzi-dev/commit-status-updater#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/http-client": ">=2.0.1",
"@octokit/core": "^4.1.0",
"@octokit/webhooks": "^10.3.0",
"@octokit/webhooks-types": "^6.5.0",
"@vercel/ncc": "^0.34.0",
"npm-check-updates": "^16.3.14",
"uuid": "^9.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^8.0.6",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"env-ci": "^7.3.0",
"eslint": "^8.25.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.1",
"jest-circus": "^29.2.1",
"js-yaml": "^4.1.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"semver-regex": "^3.1.4",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "fix",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "major",
"release": "major"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"successCmd": "make tag-major VERSION=v${nextRelease.version}"
}
],
[
"@semantic-release/github",
{
"successComment": "This ${issue.pull_request ? 'pull request' : 'issue'} is included in version ${nextRelease.version}",
"failComment": "The release from ${branch} had failed due to the following errors:\n- ${errors.map(err => err.message).join('\\n- ')}"
}
]
],
"preset": "angular",
"branches": [
"master",
"feature/semantic_release"
],
"tagFormat": "v${version}",
"ci": false
}
}