-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "@naturalcycles/datastore-lib",
"version": "3.16.4",
"description": "Opinionated library to work with Google Datastore",
"scripts": {
"prepare": "husky",
"build": "dev-lib build",
"test": "dev-lib test",
"lint": "dev-lib lint",
"bt": "dev-lib bt",
"lbt": "dev-lib lbt"
},
"dependencies": {
"@google-cloud/datastore": "^9.0.0",
"@naturalcycles/db-lib": "^9.0.0",
"@naturalcycles/js-lib": "^14.116.0",
"@naturalcycles/nodejs-lib": "^13.1.0"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^15.2.0",
"@types/node": "^22.0.0",
"jest": "^29.0.3"
},
"files": [
"dist",
"src",
"!src/test",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/**/__exclude"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.13.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/datastore-lib"
},
"keywords": [
"datastore",
"lib",
"typescript",
"dao",
"gcp"
],
"author": "Natural Cycles Team",
"license": "MIT"
}