-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"private": true,
"name": "actions-semantic-release",
"version": "0.0.0-semantically-released",
"description": "semantic-release with all the presets available",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com)",
"homepage": "https://github.com/ahmadnassri/action-semantic-release",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/action-semantic-release.git"
},
"bugs": {
"url": "https://github.com/ahmadnassri/action-semantic-release/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"keywords": [
"github",
"action",
"semantic-release",
"release"
],
"engines": {
"node": ">=18"
},
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test:cli": "node --experimental-test-coverage --test",
"test": "npm run test:cli -- test",
"test:watch": "npm run test:cli --watch",
"test:ci": "npm run test:cli -- --test-reporter node-test-github-reporter test"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@semantic-release/apm": "^4.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/gitlab": "^12.0.3",
"@semantic-release/release-notes-generator": "^11.0.4",
"conventional-changelog-angular": "^6.0.0",
"conventional-changelog-atom": "^3.0.0",
"conventional-changelog-codemirror": "^3.0.0",
"conventional-changelog-conventionalcommits": "^6.1.0",
"conventional-changelog-ember": "^3.0.0",
"conventional-changelog-eslint": "^4.0.0",
"conventional-changelog-express": "^3.0.0",
"conventional-changelog-jquery": "^4.0.0",
"conventional-changelog-jshint": "^3.0.0",
"semantic-release": "^21.0.7",
"semantic-release-replace-plugin": "^1.2.7"
},
"devDependencies": {
"node-test-github-reporter": "^1.1.3"
}
}