-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 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
{
"name": "@stackql/provider-utils",
"version": "0.5.93",
"description": "Utilities for building StackQL providers from OpenAPI specifications.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js"
},
"./docgen": {
"import": "./src/docgen/index.js"
}
},
"files": [
"src/",
"LICENSE",
"README.md",
".npmrc"
],
"scripts": {
"test": "jest",
"lint": "eslint src"
},
"keywords": [
"stackql",
"openapi",
"infrastructure-as-code",
"sql",
"cloud",
"provider",
"documentation"
],
"author": "StackQL Studios",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@stackql/deno-openapi-dereferencer": "npm:@jsr/stackql__deno-openapi-dereferencer@^0.3.1",
"csv-parser": "^3.2.0",
"js-yaml": "^4.1.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackql/stackql-provider-utils.git"
}
}