-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.15 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.15 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
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
{
"name": "hexabase-cli",
"description": "Hexabase CLI",
"version": "0.3.19",
"author": "devops@hexabase.com",
"bin": {
"hx": "./bin/run"
},
"bugs": "https://github.com/hexabase/hexabase-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-help": "^3.2.0",
"@types/download": "^6.2.4",
"axios": "^0.21.1",
"@types/eventsource": "^1.1.4",
"chalk": "^4.1.0",
"conf": "^7.1.2",
"download": "^8.0.0",
"enquirer": "^2.3.6",
"eventsource": "^1.0.7",
"form-data": "^3.0.0",
"jsonschema": "^1.4.0",
"rimraf": "^3.0.2",
"tslib": "^1.14.1",
"yarn-or-npm": "^3.0.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.7",
"@types/chai": "^4.2.13",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.39",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^10.0.2",
"mocha": "^5.2.0",
"nock": "^13.0.5",
"nyc": "^14.1.1",
"ts-node": "^8.10.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/hexabase/hexabase-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"topics": {
"actions": {
"description": "manage ACTIONS in Hexabase"
},
"apps": {
"description": "download app template, init app"
},
"contexts": {
"description": "configure CONTEXTS"
},
"datastores": {
"description": "manage DATASTORES in Hexabase"
},
"fields": {
"description": "manage FIELDS in Hexabase"
},
"logs": {
"description": "stream LOGS from Hexabase"
},
"projects": {
"description": "manage PROJECTS in Hexabase"
},
"statuses": {
"description": "manage STATUSES in Hexabase"
},
"workspaces": {
"description": "manage WORKSPACES in Hexabase"
}
},
"bin": "hx",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"repository": "hexabase/hexabase-cli",
"scripts": {
"format": "eslint . --ext .ts --config .eslintrc --fix",
"compile": "tsc",
"oclif:readme": "oclif-dev readme",
"build": "yarn run build-ts && yarn run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build-ts": "tsc",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "npm shrinkwrap && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "TS_NODE_FILES=true nyc --extension .ts mocha \"test/**/*.test.ts\"",
"test:mocha": "TS_NODE_FILES=true mocha \"test/**/*.test.ts\"",
"test:mocha:out": "TEST_OUTPUT=1 TS_NODE_FILES=true mocha \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}