-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
60 lines (60 loc) · 1.62 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
59
60
{
"name": "jquery-typeahead",
"version": "2.11.2",
"description": "jQuery plugin that provides Typeahead (autocomplete) Search preview from Json object(s) via same domain Ajax request or cross domain Jsonp and offers data compression inside Local Storage. The plugin is built with a lot of options and callbacks to allow customization.",
"author": {
"name": "Tom Bertrand"
},
"main": "dist/jquery.typeahead.min.js",
"keywords": [
"search",
"typeahead",
"ajax",
"json",
"jsonp",
"input",
"autocomplete"
],
"homepage": "http://www.runningcoder.org/jquerytypeahead/",
"bugs": "https://github.com/running-coder/jquery-typeahead/issues",
"repository": {
"type": "git",
"url": "git://github.com/running-coder/jquery-typeahead.git"
},
"license": "MIT",
"dependencies": {
"@babel/register": "^7.6.2",
"jquery": ">=1.7.2",
"lz-string": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "5.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-cli": "^2.2.0",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"jest": "^24.9.0",
"jshint": "^2.10.2",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^7.5.0",
"uglify-save-license": "^0.4.1"
},
"scripts": {
"test": "jest",
"gulp": "gulp"
},
"jest": {
"testURL": "http://localhost/",
"setupFiles": [
"<rootDir>/test/jestSetupFile.js"
]
}
}