-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "trie-search",
"author": "Joshua Jung <joshua.p.jung@gmail.com>",
"license": "MIT",
"description": "A trie implementation that maps keys to objects for rapid retrieval by phrases. Most common use will be for typeahead searches.",
"version": "2.2.1",
"main": "index.js",
"types": "index.d.ts",
"url": "https://github.com/joshjung/trie-search",
"homepage": "https://github.com/joshjung/trie-search",
"email": "joshua.p.jung@gmail.com",
"scripts": {
"test": "jest test/trie-search.test.ts",
"release:major": "npm version major && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:patch": "npm version patch && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/joshjung/trie-search.git"
},
"files": [
"src",
"index.d.ts",
"index.js"
],
"keywords": [
"trie",
"search",
"typeahead",
"type",
"ahead",
"hash",
"map",
"hashtable"
],
"dependencies": {
"hasharray": "^1.1.1",
"md5": "^2.3.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.5"
}
}