2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-19 08:49:01 +00:00
jQuery-Autocomplete/package.json
2023-10-10 13:19:56 -07:00

37 lines
941 B
JSON

{
"name": "devbridge-autocomplete",
"version": "1.4.11",
"description": "Autocomplete provides suggestions while you type into the text field.",
"homepage": "https://github.com/devbridge/jQuery-Autocomplete",
"author": "Tomas Kirda (https://twitter.com/tkirda)",
"main": "dist/jquery.autocomplete.js",
"types": "./typings/jquery-autocomplete/jquery.autocomplete.d.ts",
"license": "MIT",
"scripts": {
"format": "prettier --write ./src/**"
},
"repository": {
"type": "git",
"url": "git://github.com/devbridge/jQuery-Autocomplete.git"
},
"dependencies": {
"@types/jquery": "^2.0.32",
"jquery": ">=1.9"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^1.0.1",
"prettier": "^3.0.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4
},
"files": [
"dist/",
"typings/jquery-autocomplete/*.d.ts",
"readme.md"
]
}