-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.42 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
{
"name": "@naturalcycles/db-lib",
"scripts": {
"prepare": "husky",
"build": "dev-lib build",
"test": "dev-lib test",
"lint": "dev-lib lint",
"bt": "dev-lib bt",
"lbt": "dev-lib lbt"
},
"dependencies": {
"@naturalcycles/js-lib": "^14.116.0",
"@naturalcycles/nodejs-lib": "^13.1.1"
},
"devDependencies": {
"@naturalcycles/bench-lib": "^3.0.0",
"@naturalcycles/dev-lib": "^15.4.1",
"@types/node": "^22.1.0",
"jest": "^29.0.0"
},
"files": [
"dist",
"src",
"!src/test",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/**/__exclude"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"__exports": {
"./": "dist/index.js",
"./testing": "dist/testing/index.js",
"./validation": "dist/validation/index.js",
"./adapter/cachedb": "dist/adapter/cachedb/index.js",
"./adapter/noop": "dist/adapter/noop/index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/db-lib"
},
"engines": {
"node": ">=22.10.0"
},
"version": "8.22.0",
"description": "Lowest Common Denominator API to supported Databases",
"keywords": [
"db",
"lib",
"lowest",
"common",
"denominator",
"api",
"database",
"datastore",
"firestore",
"mysql"
],
"type": "commonjs",
"author": "Natural Cycles Team",
"license": "MIT"
}