This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "run-gatling",
"version": "1.2.0",
"description": "run-gatling is a GitHub Action that easily enables Gatling integration to a CI/CT pipeline",
"scripts": {
"semantic-release": "semantic-release",
"build": "ncc build index.js --out dist --license licenses.txt",
"local_test": "act pull_request -j test-local-folder -s GITHUB_TOKEN"
},
"engines": {
"node": ">=16"
},
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/liatrio/run-gatling.git"
},
"author": "Liatrio",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/liatrio/run-gatling/issues"
},
"homepage": "https://github.com/liatrio/run-gatling#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.33.1",
"semantic-release": "^19.0.3",
"conventional-changelog-conventionalcommits": "^4.6.3"
}
}