forked from fitiskin/jquery-autocompleter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.39 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
{
"name": "jquery-autocompleter",
"id": "autocompleter",
"version": "0.3.0",
"main": "dist/jquery.autocompleter.js",
"unpkg": "dist/jquery.autocompleter.min.js",
"description": "Easy customisable and with localStorage cache support.",
"keywords": [
"jquery-plugin",
"autocomplete",
"cache",
"ajax",
"input",
"jquery"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/ArtemFitiskin/jquery-autocompleter"
},
"homepage": "http://github.com/ArtemFitiskin/jquery-autocompleter",
"demo": "http://artemfitiskin.github.io/jquery-autocompleter/",
"license": "MIT",
"author": {
"name": "Artem Fitiskin",
"email": "[email protected]",
"url": "https://github.com/ArtemFitiskin"
},
"peerDependencies": {
"jquery": ">=1.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babelrc-rollup": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0"
}
}