-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
50
51
52
53
{
"name": "ts-redis-orm",
"version": "1.1.1",
"description": "A full functional Redis Orm library written in Typescript.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "mocha tests/*.ts",
"test:coverage": "nyc --reporter=json --reporter=text mocha tests/*.ts",
"test:general": "mocha tests/general.test.ts",
"test:speed": "mocha tests/speed.test.ts",
"test:query": "mocha tests/query.test.ts",
"test:unique": "mocha tests/unique.test.ts",
"test:connectError": "mocha tests/connectError.test.ts",
"test:schema": "mocha tests/schema.test.ts",
"test:export": "mocha tests/export.test.ts",
"test:decorator": "mocha tests/decorator.test.ts",
"test:rank": "mocha tests/rank.test.ts",
"test:tables": "mocha tests/tables.test.ts",
"patch": "npm version patch",
"build": "tsc --build --clean && tsc"
},
"dependencies": {
"@types/ioredis": "^5.0.0",
"ioredis": "^5.2.4",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"clone": "^2.1.2",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terence410/ts-redis-orm.git"
},
"author": "Terence",
"keywords": [
"redis",
"redis orm",
"sorted set",
"ioredis",
"relational db",
"typescript"
],
"license": "MIT License"
}