-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.13 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
{
"name": "@linked-db/linked-ql",
"title": "Linked QL",
"description": "A query client that extends standard SQL with new syntax sugars and enables auto-versioning capabilities on any database",
"keywords": [
"Linked DB",
"Arrow Joins",
"IndexedDB",
"MySQL",
"PostgreSQL"
],
"homepage": "https://linked-ql.netlify.app/",
"icon": "https://webqit.io/icon.svg",
"version": "0.30.13",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/linked-db/linked-ql.git"
},
"bugs": {
"url": "https://github.com/linked-db/linked-ql/issues"
},
"type": "module",
"sideEffects": false,
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./sql": "./src/api/sql/SQLClient.js"
},
"bin": {
"linkedql": "src/cli/index.js"
},
"scripts": {
"test": "mocha --extension .pg.test.js --exit",
"test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
"build": "esbuild main=src/browser-entry.js sql=src/api/sql/SQLClient.js --bundle --minify --sourcemap --outdir=dist",
"preversion": "npm run test && npm run build && git add -A dist",
"postversion": "npm publish",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"@webqit/util": "^0.8.14",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"yaml": "^2.5.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"esbuild": "^0.20.2",
"mariadb": "^3.3.1",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"pg": "^8.11.3"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": [],
"funding": {
"type": "patreon",
"url": "https://patreon.com/ox_harris"
},
"badges": {
"list": [
"npmversion",
"npmdownloads",
"patreon"
],
"config": {
"patreonUsername": "ox_harris",
"githubUsername": "linked-db",
"githubRepository": "linked-ql",
"githubSlug": "linked-db/linked-ql",
"npmPackageName": "linked-db/linked-ql"
}
}
}