-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
{
"name": "sqler",
"version": "9.0.0",
"description": "Turn SQL files into executable functions",
"main": "index.js",
"scripts": {
"test": "node --test",
"docs:api": "rm -rf docs/api docs/api__index__.md docs/apitypedefs.md && node ./docs/generate-api.mjs",
"docs:dev": "npm run docs:api && vitepress dev docs",
"docs:build": "npm run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ugate/sqler.git"
},
"keywords": [
"SQL",
"DB",
"Database"
],
"author": "ugate",
"license": "MIT",
"bugs": {
"url": "https://github.com/ugate/sqler/issues"
},
"homepage": "https://ugate.github.io/sqler/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"asynchro": "^4.0.0"
},
"devDependencies": {
"vitepress": "^1.6.4",
"vitepress-jsdoc": "^1.0.4"
},
"files": [
"/index.js",
"/lib/**/*",
"/typedefs.js"
]
}