forked from redis/redis-om-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "redis-om",
"version": "0.3.4",
"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": "rm -rf ./dist && tsc --project ./",
"docs": "rm -rf ./docs && typedoc",
"test-all": "jest --runInBand",
"test-unit": "jest --selectProjects unit",
"test-functional": "jest --selectProjects functional --runInBand"
},
"repository": "github:redis/redis-om-node",
"homepage": "https://github.com/redis/redis-om-node#readme",
"keywords": [
"redis",
"orm"
],
"license": "MIT",
"author": "Guy Royse <guy@guyroyse.com> (http://guyroyse.com/)",
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.38",
"@types/uuid": "^8.3.4",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.3",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.7.2"
},
"dependencies": {
"redis": "^4.0.4",
"tslib": "^2.4.0",
"ulid": "^2.3.0"
}
}