2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-19 00:39:01 +00:00
jQuery-Autocomplete/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2014-08-25 00:36:29 +00:00
{
"name": "devbridge-autocomplete",
2020-05-01 22:39:26 +00:00
"version": "1.4.11",
2014-08-25 00:36:29 +00:00
"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",
2023-10-10 23:53:52 +00:00
"types": "./typings/jquery.autocomplete.d.ts",
2014-08-25 00:36:29 +00:00
"license": "MIT",
"keywords": [
"jquery-plugin"
],
2023-10-10 20:19:56 +00:00
"scripts": {
2023-10-11 00:51:17 +00:00
"build": "grunt build",
2023-10-11 00:16:33 +00:00
"format": "prettier --write ./src/**",
"lint": "eslint ./src"
2023-10-10 20:19:56 +00:00
},
"repository": {
"type": "git",
2015-06-01 20:59:22 +00:00
"url": "git://github.com/devbridge/jQuery-Autocomplete.git"
},
"peerDependencies": {
2020-09-26 01:08:22 +00:00
"jquery": ">=1.9"
},
"devDependencies": {
"@types/jquery": "^3.5.22",
2023-10-11 00:16:33 +00:00
"eslint": "^8.51.0",
2023-10-11 00:51:17 +00:00
"grunt": "^1.6.1",
"grunt-contrib-uglify": "^5.2.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
2023-10-10 20:19:56 +00:00
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
2023-10-11 00:00:38 +00:00
"trailingComma": "es5",
2023-10-10 20:19:56 +00:00
"tabWidth": 4
2015-06-03 22:47:40 +00:00
},
2023-10-11 00:16:33 +00:00
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"eslint:recommended"
],
"globals": {
"define": "readonly",
"jQuery": "readonly",
"module": "readonly",
"require": "readonly"
}
},
2015-06-03 22:47:40 +00:00
"files": [
"dist/",
2017-11-20 15:40:34 +00:00
"typings/jquery-autocomplete/*.d.ts",
2015-06-03 22:47:40 +00:00
"readme.md"
]
2023-10-11 00:16:33 +00:00
}