kup-cli 0.0.0-alpha.1 → 0.0.0-alpha.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/bin/cli.js +4 -0
- package/index.js +5 -1
- package/lib/parse.js +7 -0
- package/package.json +12 -7
- package/bin/.gitkeep +0 -0
package/bin/cli.js
ADDED
package/index.js
CHANGED
package/lib/parse.js
ADDED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kup-cli",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.2",
|
|
4
4
|
"description": "A CLI tool to post Markdown files to GitHub as issues.",
|
|
5
|
-
"
|
|
5
|
+
"bin": {
|
|
6
|
+
"kup": "./bin/cli.js"
|
|
7
|
+
},
|
|
6
8
|
"scripts": {
|
|
9
|
+
"postpublish": "npx npm-mirror-sync",
|
|
7
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
11
|
},
|
|
9
|
-
"repository":
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/cssmagic/kup.git"
|
|
12
|
-
},
|
|
12
|
+
"repository": "cssmagic/kup",
|
|
13
13
|
"keywords": [
|
|
14
14
|
"cli",
|
|
15
15
|
"markdown",
|
|
@@ -21,9 +21,14 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=12"
|
|
23
23
|
},
|
|
24
|
-
"dependencies": {
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"gh-got": "^9.0.0",
|
|
26
|
+
"yaml": "^2.1.0",
|
|
27
|
+
"yargs": "^17.5.0"
|
|
28
|
+
},
|
|
25
29
|
"files": [
|
|
26
30
|
"*.js",
|
|
31
|
+
"lib/",
|
|
27
32
|
"bin/"
|
|
28
33
|
],
|
|
29
34
|
"publishConfig": {
|
package/bin/.gitkeep
DELETED
|
File without changes
|