forked from pawelczak/EasyAutocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.28 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": "easy-autocomplete",
"title": "jQuery plugin for autocompletion",
"author": "Łukasz Pawełczak (http://github.com/pawelczak)",
"version": "1.2.1",
"keywords": [
"jquery",
"jquery-plugin",
"autocomplete"
],
"repo": "pawelczak/EasyAutocomplete",
"homepage": "http://easyautocomplete.com",
"maintainers": [
"Łukasz Pawełczak (http://github.com/pawelczak)"
],
"main": "dist/jquery.easy-autocomplete.js",
"contributors": [
"Łukasz Pawełczak <[email protected]> (http://github.com/pawelczak)"
],
"repository": {
"type": "git",
"url": "https://github.com/pawelczak/EasyAutocomplete.git"
},
"bugs": {
"url": "https://github.com/pawelczak/EasyAutocomplete/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/pawelczak/easy-autocomplete/blob/master/LICENSE.txt"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"jquery": "*"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-csslint": "~0.3.1",
"grunt-contrib-nodeunit": "~0.3.3",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-sass": "~0.7.3",
"grunt-banner": "~0.2.3",
"matchdep": "~0.3.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-qunit": "~0.5.2",
"grunt-stripcomments": "~0.3.1",
"grunt-jscs": "~1.6.0"
},
"readme": "Jquery autocomplete plugin\n\n If you are interested in using this jQuery autocomplete plugin on your site, you can find out more details in the <a href='http://easyautocomplete.com/'>EasyAutocomplete - jquery autocomplete - homepage</a>. You can find there <a href='http://easyautocomplete.com/guide' >full documentation and easy guide</a> on how to use EasyAutocomplete plugin.\n\nFile location:\n--------------------------------------\n - Distribution files Javascript, CSS are in `dist` folder,\n - Source files are in the folder `src`,\n - Simple examples, that presents usage of plugin can be found in folder `demo`,\n - Tests for the plugin are located in folder `test`.\n\nLicense:\n--------------------------------------\nCode released under <a href='http://github.com/pawelczak/EasyAutocomplete/blob/master/LICENSE.txt' >the MIT license</a>.\n",
"readmeFilename": "README.md"
}