-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 944 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 944 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
44
45
46
47
{
"name": "cli-rewire",
"version": "0.0.0-development",
"description": "Make a CLI by rewiring other CLIs",
"keywords": [
"cli",
"config",
"configuration",
"command",
"exec",
"bin",
"parse",
"args"
],
"homepage": "https://github.com/jr-codes/cli-rewire#readme",
"bugs": {
"url": "https://github.com/jr-codes/cli-rewire/issues"
},
"repository": "jr-codes/cli-rewire",
"license": "MIT",
"author": "JR Shampang",
"main": "lib/index.js",
"files": [
"lib",
"!*.test.js",
"!__tests__"
],
"scripts": {
"test": "u test-ci",
"test-local": "u test"
},
"dependencies": {
"chalk": "^4.1.2",
"cosmiconfig": "^7.0.1",
"debug": "^4.3.2",
"execa": "^5.1.1",
"yargs-parser": "^21.0.0",
"yargs-unparser": "^2.0.0"
},
"devDependencies": {
"@jr.codes/u": "1.0.1",
"semantic-release": "19.0.5"
},
"engines": {
"node": ">=12"
}
}