-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
47
48
{
"name": "sofia-tree",
"version": "0.0.9",
"description": "A fast in-memory dictionary for autocomplete as you type features based on a trie data structure.",
"author": "Jaime Agudo <jaime.agudo.lopez@gmail.com>",
"license": "MIT",
"keywords": [
"auto-complete",
"autocomplete",
"complete",
"trie",
"radix",
"typeahead",
"trie",
"sofia",
"patricia",
"tree",
"type",
"memory",
"dictionary"
],
"dependencies": {},
"main": "sofia-tree.js",
"devDependencies": {
"express": "~4.9.8",
"body-parser": "~1.9.1",
"supervisor": "~0.6.0",
"webkit-devtools-agent": "~0.3.1",
"uglifyjs": "^2.3.6",
"docco": "0.6.x",
"coveralls": "^2.11.2",
"jscoverage": "^0.5.8",
"nodeunit": "^0.9.0",
"underscore": "~1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jaimeagudo/sofiatree.git"
},
"scripts": {
"test": "nodeunit test",
"coveralls": "jscoverage lib && SOFIATREE_COVERAGE=1 nodeunit --reporter=lcov test | coveralls",
"example": "node example/server.js",
"doc": "docco lib/sofia-tree.js && docco example/server.js",
"uglify": "uglifyjs lib/sofia-tree.js -c \"evaluate=false\" -m --source-map sofia-tree-min.map -o dist/sofia-tree-min.js && rm sofia-tree-min.map"
},
"analyze": true
}