forked from redis/redis-om-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "redis-om",
"version": "0.4.3",
"description": "Object mapping, and more, for Redis and Node.js. Written in TypeScript.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"CHANGELOG",
"LICENSE",
"logo.svg",
"dist/**/*",
"docs/**/*"
],
"scripts": {
"build": "tsup",
"docs": "rm -rf ./docs && typedoc",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:unit": "vitest --dir ./spec/unit",
"test:functional": "vitest --dir ./spec/functional"
},
"tsup": {
"entry": [
"lib/index.ts"
],
"clean": true,
"dts": true,
"noExternal": [
"ulid"
]
},
"repository": "github:redis/redis-om-node",
"homepage": "https://github.com/redis/redis-om-node#readme",
"keywords": [
"redis",
"orm"
],
"license": "MIT",
"author": "Guy Royse <[email protected]> (http://guyroyse.com/)",
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@vitest/ui": "^0.17.1",
"c8": "^7.11.3",
"tsup": "^6.1.2",
"typedoc": "^0.23.2",
"typedoc-plugin-markdown": "^3.13.1",
"typescript": "^4.7.2",
"vitest": "^0.20.0"
},
"dependencies": {
"jsonpath-plus": "^7.2.0",
"just-clone": "^6.1.1",
"redis": "^4.6.4",
"ulid": "^2.3.0"
}
}