forked from marcojetson/type-ahead.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "type-ahead",
"version": "2.1.0",
"description": "A lightweight and extensible type ahead library",
"main": "src/type-ahead.js",
"scripts": {
"build":"browserify src/type-ahead.js -s TypeAhead -o type-ahead.js && uglifyjs type-ahead.js -o type-ahead.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcojetson/type-ahead.js.git"
},
"keywords": [
"typeahead",
"type",
"ahead",
"type-ahead",
"a",
"head",
"auto",
"complete",
"autocomplete",
"typ",
"typing",
"completing",
"micro",
"microjs",
"marcojetson",
"marco",
"jetson",
"lightweight",
"extensible",
"objects",
"strings",
"list",
"collections",
"mithril",
"mithriljs",
"compatible"
],
"author": "Marco (@marcojetson)",
"contributors": [
"Trent Oswald <[email protected]> [@therebelrobot] (http://therebelrobot.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marcojetson/type-ahead.js/issues"
},
"homepage": "https://github.com/marcojetson/type-ahead.js#readme",
"devDependencies": {
"browserify": "^11.0.1",
"uglify-js": "^2.4.24"
}
}