resulgit 1.0.0 → 1.0.2
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/package.json +14 -7
- package/resulgit.js +766 -349
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resulgit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A powerful CLI tool for version control system operations - clone, commit, push, pull, merge, branch management, and more",
|
|
5
5
|
"main": "resulgit.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"resulgit": "
|
|
7
|
+
"resulgit": "resulgit.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"test": "
|
|
10
|
+
"test": "jest",
|
|
11
|
+
"test:watch": "jest --watch",
|
|
12
|
+
"test:coverage": "jest --coverage"
|
|
11
13
|
},
|
|
12
14
|
"keywords": [
|
|
13
15
|
"git",
|
|
@@ -21,18 +23,23 @@
|
|
|
21
23
|
"pull-request",
|
|
22
24
|
"stash"
|
|
23
25
|
],
|
|
24
|
-
"author": "",
|
|
26
|
+
"author": "resulticks <int.resulticks@gmail.com>",
|
|
25
27
|
"license": "MIT",
|
|
26
28
|
"engines": {
|
|
27
29
|
"node": ">=14.0.0"
|
|
28
30
|
},
|
|
29
31
|
"repository": {
|
|
30
32
|
"type": "git",
|
|
31
|
-
"url": ""
|
|
33
|
+
"url": "git+https://github.com/resulticks/resulgit.git"
|
|
32
34
|
},
|
|
33
35
|
"files": [
|
|
34
36
|
"resulgit.js",
|
|
35
37
|
"README.md"
|
|
36
|
-
]
|
|
38
|
+
],
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"ora": "^5.4.1"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"jest": "^29.7.0"
|
|
44
|
+
}
|
|
37
45
|
}
|
|
38
|
-
|