forked from rockset/rockset-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
160 lines (160 loc) · 4.68 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "@rockset/cli",
"description": "Official Rockset CLI",
"version": "0.9.1",
"author": "Rockset",
"bin": {
"rockset": "./bin/run"
},
"bugs": "https://github.com/rockset/rockset-js/issues",
"dependencies": {
"@oclif/core": "1.1.1",
"@oclif/errors": "^1.3.5",
"@oclif/plugin-autocomplete": "^1.1.1",
"@oclif/plugin-help": "^5.1.10",
"@oclif/plugin-update": "^2.1.5",
"@rockset/client": "0.9.1",
"@rockset/core": "0.9.1",
"@rockset/dev-server": "0.9.1",
"@rockset/eslint-config": "0.9.1",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^8.1.1",
"@types/inquirer": "^6.5.0",
"@types/prompts": "^2.0.8",
"abort-controller": "^3.0.0",
"aws-sdk": "^2.679.0",
"chalk": "^4.1.0",
"handlebars": "^4.7.6",
"inquirer": "^7.2.0",
"lodash": "^4.17.15",
"prompts": "^2.3.2",
"tslib": "^1.11.2"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.14.150",
"@types/node": "^10.17.21",
"aws-sdk": "^2.679.0",
"eslint": "^7.0.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^9.0.1",
"generate": "^0.14.0",
"generate-license": "^1.0.0",
"globby": "^10.0.2",
"jest": "^26.1.0",
"js-yaml": "^3.14.0",
"oclif": "2.1.0",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.1.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/rockset/rockset-js",
"keywords": [
"oclif",
"rockset",
"cli"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"topics": {
"auth": {
"description": "Manage your authentication profiles."
},
"api": {
"description": "wrappers for Rockset's API endpoints (full documentation at https://docs.rockset.com/rest-api)"
},
"local": {
"description": "Manage your local Query Lambdas."
},
"local:queryLambda": {
"description": "add, delete, execute, and list your Query Lambdas"
},
"api:apikeys": {
"description": "apikey API"
},
"api:collections": {
"description": "collections API"
},
"api:documents": {
"description": "documents API"
},
"api:integrations": {
"description": "integrations API"
},
"api:orgs": {
"description": "organizations API"
},
"api:queries": {
"description": "query execution API"
},
"api:queryLambdas": {
"description": "Query Lambda API"
},
"api:users": {
"description": "users API"
},
"api:workspaces": {
"description": "workspaces API"
}
},
"commands": "./lib/commands",
"update": {
"s3": {
"bucket": "rockset-cli-artifacts",
"templates": {
"target": {
"unversioned": "channels/stable/<%- bin %>-<%- platform %>-<%- arch %><%- ext %>",
"versioned": "channels/stable/<%- bin %>-v<%- version %>/<%- bin %>-v<%- version %>-<%- platform %>-<%- arch %><%- ext %>",
"manifest": "channels/stable/rockset-<%- platform %>-<%- arch %>-buildmanifest"
}
}
}
},
"bin": "rockset",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-update"
],
"repositoryPrefix": "../<%- commandPath %>",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": " "
},
"repository": "https://github.com/rockset/rockset-js",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif manifest && yarn run build-docs",
"build-docs": "rm -rf reference && mkdir reference && oclif readme --multi --dir reference",
"test": "rm -rf testLambdas && mkdir -p testLambdas && jest",
"version": "yarn run build-docs && git add README.md",
"build": "yarn run prepack",
"lint": "eslint 'src/**/*.ts'",
"codegen-swagger": "js-yaml src/generator/swagger-generated.yaml > src/generator/swagger-generated.json",
"codegen": "yarn run codegen-swagger && rm -rf src/commands/api/ && ts-node src/generator/generate.ts && eslint --fix src/commands/api/**/*.ts --no-ignore",
"oclif-pack": "ln -s ../../yarn.lock yarn.lock && oclif pack:tarballs && rm yarn.lock",
"oclif-publish": "oclif upload:tarballs",
"oclif-promote": "oclif promote"
},
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"gitHead": "a995e39183da8c1641b9b16917dfb5067e258893"
}