-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.34 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "trie-d",
"version": "1.0.6",
"description": "Minimal trie datastructure representation",
"main": "index.js",
"scripts": {
"test": "node_modules/gulp/bin/gulp.js test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/void666/node-trie.git"
},
"author": "Sushim Mukul Dutta",
"license": "MIT",
"bugs": {
"url": "https://github.com/void666/node-trie/issues"
},
"homepage": "https://github.com/void666/node-trie#readme",
"dependencies": {
"lodash": "^4.17.5",
"coveralls": "^3.0.0"
},
"keywords": [
"trie",
"trie-d",
"auto complete",
"near match",
"search",
"hashmatch",
"node-trie",
"trie-search",
"keywords-search",
"dynamic trie",
"word search",
"word",
"autocomplete",
"autosearch",
"fuzzymatch",
"fuzzy",
"match",
"typeahead",
"ahead",
"hash",
"map",
"hashtable"
],
"devDependencies": {
"chai": "^4.1.2",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^3",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"yargs": "^8.0.2"
},
"engines": {
"node": ">=6.11.1"
}
}