forked from configu/configu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.27 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@configu/cli",
"version": "0.0.0",
"license": "Apache-2.0",
"description": "configu cli",
"author": "Configu",
"scripts": {
"clean:build": "shx rm -rf build dist",
"clean:cache": "shx rm -rf package-lock.json tsconfig.tsbuildinfo tmp",
"build:tsc": "tsc --build",
"build:docker": "docker build --progress plain -t configu/cli -f ./Dockerfile .",
"build:manifest": "shx mv -f README.md README.tmp.md && shx mv -f manifest.tmpl.md README.md && oclif manifest && oclif readme --no-aliases && shx mv -f README.md manifest.md && shx mv -f README.tmp.md README.md",
"build:oclif": "oclif pack tarballs --parallel",
"prebuild:oclif": "conc \"npm:clean:*\" && shx cp ../../package-lock.json ./package-lock.json && npm run build:tsc && npm run build:manifest",
"postbuild:oclif": "npm run clean:cache",
"test": "echo NO TESTS"
},
"oclif": {
"bin": "configu",
"binAliases": [
"cfgu"
],
"dirname": "configu",
"scope": "configu",
"commands": "./build/commands",
"topicSeparator": " ",
"topics": {},
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-not-found",
"@oclif/plugin-update"
],
"additionalVersionFlags": [
"v",
"V",
"-v",
"-V",
"version",
"--version"
],
"additionalHelpFlags": [
"h",
"H",
"-h",
"-H",
"help",
"--help"
],
"update": {
"node": {
"version": "18.15.0",
"targets": [
"linux-arm",
"linux-x64",
"darwin-arm64",
"darwin-x64",
"win32-x64"
]
},
"s3": {
"bucket": "cli.configu.com",
"folder": "",
"acl": " ",
"host": "https://cli.configu.com",
"xz": false
}
}
},
"engines": {
"node": ">=v16.0.0"
},
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"configu": "./bin/run",
"cfgu": "./bin/run"
},
"files": [
"/bin",
"/build/**/*.js",
"/oclif.manifest.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/configu/configu",
"directory": "ts/packages/cli"
},
"bugs": {
"url": "https://github.com/configu/configu/issues",
"email": "[email protected]"
},
"homepage": "https://configu.com",
"keywords": [
"configu",
"configu-cli"
],
"dependencies": {
"@configu/lib": "^0.6.4",
"@configu/node": "^0.19.0",
"@configu/ts": "^0.18.1",
"@oclif/core": "^2.11.8",
"@oclif/plugin-autocomplete": "^2.3.6",
"@oclif/plugin-not-found": "^2.3.37",
"@oclif/plugin-update": "^3.1.32",
"axios": "^1.4.0",
"chalk": "4.1.2",
"change-case": "^4.1.2",
"ci-info": "^3.8.0",
"cosmiconfig": "^8.2.0",
"dotenv": "^16.3.1",
"fast-glob": "^3.3.1",
"inquirer": "8.2.5",
"lodash": "^4.17.21",
"log-symbols": "4.1.0",
"open": "8.4.2",
"openid-client": "^5.4.3"
},
"devDependencies": {
"@oclif/test": "^2.4.6",
"@types/inquirer": "8.2.5",
"@types/lodash": "^4.14.197",
"aws-sdk": "^2.1440.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-unicorn": "^48.0.1",
"globby": "11.0.4",
"oclif": "^3.11.3",
"tslib": "^2.6.2"
}
}