-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 869 Bytes
/
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
{
"name": "@retailify/redisearch-node",
"version": "0.0.1",
"description": "node client for redisearch",
"main": "lib/index",
"types": "lib/index",
"scripts": {
"start": "yarn build:watch",
"build": "tsc -p .",
"build:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=10.7.0"
},
"engineStrict": true,
"keywords": [
"node",
"redisearch",
"nodejs"
],
"author": "Thomas Meitz",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^11.15.7",
"@types/redis": "^2.8.16",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"buffers": "^0.1.1",
"redis": "^3.0.2"
}
}