-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "amazon-autocomplete",
"version": "1.0.2",
"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 && uglifyjs _es5/amazon-autocomplete.js --output dist/amazon-autocomplete.min.js"
},
"bugs": {
"url": "https://github.com/caroso1222/amazon-autocomplete/issues"
},
"author": "Carlos Roso",
"license": "MIT",
"devDependencies": {
"uglify-js": "^3.8.1",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"files": [
"dist",
"src",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/caroso1222/amazon-autocomplete.git"
}
}