-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 818 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 818 Bytes
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
{
"name": "kup-cli",
"version": "0.1.0-beta.2",
"description": "A CLI tool to sync local Markdown files to GitHub issues.",
"bin": {
"kup": "./bin/cli.js"
},
"scripts": {
"debug": "export KUP_DEBUG_MODE=1",
"postpublish": "npx npm-mirror-sync",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "cssmagic/kup",
"keywords": [
"cli",
"markdown",
"github",
"issue"
],
"author": "cssmagic <cssmagic.cn@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"find-up": "^5.0.0",
"gh-got": "^9.0.0",
"inquirer": "^8.2.4",
"yaml": "^2.1.0",
"yargs": "^17.5.0"
},
"devDependencies": {
"https-proxy-agent": "^5.0.1"
},
"files": [
"*.js",
"lib/",
"bin/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}