-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.25 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.25 KB
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
{
"name": "gcloud-utils",
"description": "Additional utilities to speed up standard GCP workflows",
"version": "1.1.2",
"author": "Kerren Ortlepp @Kerren-Entrostat",
"bin": {
"gcu": "./bin/run"
},
"bugs": "https://github.com/entrostat/gcloud-utils/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.1",
"fuse.js": "^6.4.5",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.3.0",
"lodash": "^4.17.20",
"tslib": "^2.0.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.6",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.19",
"chai": "^4.2.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/entrostat/gcloud-utils",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "gcu",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"debug": {
"description": "Tools used to debug this CLI and ensure it's working as expected."
}
}
},
"repository": "entrostat/gcloud-utils",
"scripts": {
"release": "standard-version --sign",
"release:no-sign": "standard-version",
"release:dry-run": "standard-version --dry-run",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}