forked from arnorhs/node-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 724 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 724 Bytes
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
{
"name": "node-index",
"version": "0.0.2",
"description": "A super simple in memory search index based on Term Frequency–Inverse Document Frequency using the awesome natural module.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "Arnor Heidar Sigurdsson <arnorhs@gmail.com>",
"license": "MIT",
"dependencies": {
"natural": "~0.1.25"
},
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "~1.15.1"
},
"keywords": [
"search",
"index",
"simple",
"memory"
],
"repository": {
"type": "git",
"url": "git://github.com/arnorhs/node-index.git"
},
"bugs": {
"url": "https://github.com/arnorhs/node-index/issues"
}
}