-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 821 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 821 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
34
{
"name": "autocompletor_a",
"description": "A utility for autocompleting words using in memory trie data structure",
"version": "0.1.1",
"keywords": [
"trie",
"autocomplete"
],
"author": "Nikhil Ranjan (@niklabh)",
"demo": "http://linkm.in/autocompleteweb/",
"repository": {
"type": "git",
"url": "git://github.com/niklabh/autocomplete.git"
},
"homepage": "https://github.com/niklabh/autocomplete",
"main": "index.js",
"scripts": {
"start": "node server.js & ./node_modules/.bin/serve client",
"test": "./node_modules/.bin/mocha test"
},
"license": "MIT",
"dependencies": {
"byline": "^4.2.1",
"chai": "^3.5.0",
"debug": "^2.2.0"
},
"devDependencies": {
"mocha": "^2.4.5",
"serve": ">=7.1.3"
},
"engines": {
"node": ">= 0.10.0"
}
}