forked from TarekRaafat/autoComplete.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
{
"name": "@tarekraafat/autocomplete.js",
"version": "7.0.1",
"description": "Simple autocomplete pure vanilla Javascript library.",
"main": "dist/js/autoComplete.js",
"browser": "dist/js/autoComplete.min.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w & ws --rewrite '/* -> /dist/$1' --spa ./dist/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TarekRaafat/autoComplete.js.git"
},
"keywords": [
"simple",
"autocomplete",
"autocompletion",
"javascript",
"light",
"blazing",
"fast",
"speed",
"lightning",
"lightweight",
"modern",
"versitle",
"customizable",
"hackable",
"easy",
"intuitive",
"scalable",
"extensible",
"autoCompletejs",
"autosuggestion",
"autosuggest",
"search",
"dropdown"
],
"author": {
"name": "Tarek Raafat",
"email": "[email protected]",
"url": "http://www.tarekraafat.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TarekRaafat/autoComplete.js/issues"
},
"homepage": "https://github.com/TarekRaafat/autoComplete.js#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"acorn": "^6.3.0",
"babel-eslint": "^10.0.3",
"local-web-server": "^2.6.1",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleanup": "^3.1.0",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-uglify": "^6.0.3"
}
}