-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
58 lines (58 loc) · 1.32 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": "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.d.ts",
"license": "MIT",
"keywords": [
"jquery-plugin"
],
"scripts": {
"build": "grunt build",
"format": "prettier --write ./src/**",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git://github.com/devbridge/jQuery-Autocomplete.git"
},
"peerDependencies": {
"jquery": ">=1.9"
},
"devDependencies": {
"@types/jquery": "^3.5.22",
"eslint": "^8.51.0",
"grunt": "^1.6.1",
"grunt-contrib-uglify": "^5.2.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"eslint:recommended"
],
"globals": {
"define": "readonly",
"jQuery": "readonly",
"module": "readonly",
"require": "readonly"
}
},
"files": [
"dist/",
"typings/jquery-autocomplete/*.d.ts",
"readme.md"
]
}