gitlab-pipeline-automator 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ENV_SETUP.md +235 -0
- package/LICENSE +21 -0
- package/README.md +432 -0
- package/package.json +49 -0
- package/pipeline_automation.js +731 -0
- package/postinstall.js +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gitlab-pipeline-automator",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Automation script for GitLab pipeline management - automatically creates, approves, and monitors GitLab pipelines",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "pipeline_automation.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"gitlab-pipeline-automator": "./pipeline_automation.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"start": "node pipeline_automation.js",
|
|
12
|
+
"test": "node pipeline_automation.js --help",
|
|
13
|
+
"test:cli": "node pipeline_automation.js --help",
|
|
14
|
+
"postinstall": "node postinstall.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"pipeline_automation.js",
|
|
18
|
+
"README.md",
|
|
19
|
+
"ENV_SETUP.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"postinstall.js"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"gitlab",
|
|
25
|
+
"pipeline",
|
|
26
|
+
"automation",
|
|
27
|
+
"playwright",
|
|
28
|
+
"ci",
|
|
29
|
+
"cd",
|
|
30
|
+
"devops"
|
|
31
|
+
],
|
|
32
|
+
"author": "",
|
|
33
|
+
"license": "ISC",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/mahadmughal/gitlab_pipeline_automator.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/mahadmughal/gitlab_pipeline_automator/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/mahadmughal/gitlab_pipeline_automator#readme",
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=14.0.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"commander": "^11.1.0",
|
|
47
|
+
"playwright": "^1.40.0"
|
|
48
|
+
}
|
|
49
|
+
}
|