-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 879 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
{
"name": "redis-search",
"version": "0.0.1",
"description": "redis-search is a very light-weight search engine for node.js using redis. This module is an implementation of [n-gram method](http://en.wikipedia.org/wiki/N-gram). This is a light general purpose search library that could be integrated into a blog, a documentation server, etc.",
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"redis": "~0.8.4"
},
"devDependencies": {},
"scripts": {
"test": "node test/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/seipop/redis-search.git"
},
"keywords": [
"redis",
"search",
"ngram"
],
"author": "Cheng Zhang <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "f9c22027b81a505a698ed47b3a25c24492c10c94"
}