forked from TarekRaafat/autoComplete.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@exileofaranei/autocomplete.js",
"version": "8.3.14",
"description": "Simple autocomplete pure vanilla Javascript library.",
"keywords": [
"simple",
"autocomplete",
"autocompletion",
"javascript",
"light",
"blazing",
"fast",
"speed",
"lightning",
"lightweight",
"modern",
"versatile",
"customizable",
"hackable",
"easy",
"intuitive",
"scalable",
"extensible",
"autoCompleteJS",
"autosuggestion",
"autosuggest",
"search",
"dropdown"
],
"homepage": "https://github.com/TarekRaafat/autoComplete.js#readme",
"bugs": {
"url": "https://github.com/TarekRaafat/autoComplete.js/issues",
"email": "tarek.m.raafat@gmail.com"
},
"license": "Apache-2.0",
"author": {
"name": "Tarek Raafat",
"email": "tarek.m.raafat@gmail.com",
"url": "http://www.tarekraafat.com"
},
"files": [
"dist/js/autoComplete.js",
"dist/css/autoComplete.css",
"dist/css/autoComplete.01.css",
"dist/css/autoComplete.02.css",
"dist/css/images/magnifier.svg",
"dist/css/images/search.svg"
],
"main": "dist/js/autoComplete.js",
"browser": "dist/js/autoComplete.min.js",
"unpkg": "dist/js/autoComplete.min.js",
"module": "dist/js/autoComplete.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ExileofAranei/autoComplete.js.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-babel": "^5.2.3",
"acorn": "^8.1.0",
"rollup": "^2.41.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-uglify": "^5.0.2"
},
"engines": {
"node": ">=12",
"npm": ">=6"
}
}