-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.24 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.24 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
{
"name": "databox-cli",
"version": "0.3.1",
"type": "module",
"description": "CLI for the Databox public API",
"author": "Databox",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"databox": "./bin/run.js"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json",
"/skills"
],
"oclif": {
"bin": "databox",
"dirname": "databox",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"auth": {
"description": "Authenticate with the Databox API"
},
"account": {
"description": "Manage Databox accounts"
},
"data-source": {
"description": "Manage data sources"
},
"analyze": {
"description": "Analyze datasets with Genie AI"
},
"dataset": {
"description": "Manage datasets and ingest data"
}
},
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf lib && rm -f tsconfig.tsbuildinfo",
"dev": "bin/dev.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest",
"test": "TS_NODE_PROJECT=tsconfig.test.json mocha --forbid-only \"test/**/*.test.ts\"",
"test:watch": "TS_NODE_PROJECT=tsconfig.test.json mocha --watch \"test/**/*.test.ts\"",
"test:coverage": "nyc npm test"
},
"dependencies": {
"@oclif/core": "^4.0.0",
"@oclif/plugin-help": "^6.0.0"
},
"devDependencies": {
"@oclif/test": "^4.0.0",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^20",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"mocha": "^10",
"nyc": "^15",
"oclif": "^4.0.0",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/databox/databox-cli.git"
},
"bugs": {
"url": "https://github.com/databox/databox-cli/issues"
},
"homepage": "https://github.com/databox/databox-cli#readme"
}