forked from spencerwuwu/amazon-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 972 Bytes
/
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
{
"name": "amazon-autocomplete",
"version": "1.0.2",
"browser": "src/amazon-autocomplete.js",
"description": "A vanilla JavaScript plugin to unlock the full power of the Amazon autocompletion engine right into your search input.",
"keywords": [
"amazon",
"autocomplete",
"autocompletion",
"textfield",
"suggestions"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel --presets es2015 src/amazon-autocomplete.js --out-file _es5/amazon-autocomplete.js"
},
"bugs": {
"url": "https://github.com/caroso1222/amazon-autocomplete/issues"
},
"author": "Carlos Roso",
"license": "MIT",
"devDependencies": {
"gulp": "^3.9.1",
"del": "^2.2.2",
"gulp-uglify": "^2.0.0",
"gulp-rename": "^1.2.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/caroso1222/amazon-autocomplete.git"
}
}