forked from pawelczak/EasyAutocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.45 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
55
56
57
58
{
"name": "easy-autocomplete",
"title": "jQuery plugin for autocompletion",
"author": "Łukasz Pawełczak (http://github.com/pawelczak)",
"version": "1.3.5",
"keywords": [
"jquery",
"jquery-plugin",
"autocomplete"
],
"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": "MIT",
"scripts": {
"grunt": "grunt",
"build": "npm run grunt build",
"devel": "npm run grunt devel",
"test": "npm run grunt test",
"preversion": "npm run test",
"version": "npm run build && git add -A .",
"postversion": "git push && git push --follow-tags"
},
"dependencies": {
"jquery": "*"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-banner": "~0.2.3",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-concat": "~0.5.1",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-csslint": "~0.3.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.3.3",
"grunt-contrib-qunit": "~0.5.2",
"grunt-contrib-sass": "~0.9.2",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-jscs": "~1.6.0",
"grunt-stripcomments": "~0.3.1",
"matchdep": "~0.3.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"
}