forked from iqbalfn/bootstrap-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "bootstrap-autocomplete",
"version": "0.2.0",
"description": "Bootstrap Autocomplete Component",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"js": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config build/rollup.config.js --sourcemap",
"js-minify": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content='dist/js/bootstrap-autocomplete.js.map',includeSources,url='bootstrap-autocomplete.min.js.map'\" --output dist/js/bootstrap-autocomplete.min.js dist/js/bootstrap-autocomplete.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iqbalfn/bootstrap-autocomplete.git"
},
"keywords": [
"ui",
"bootstrap",
"input",
"autocomplete"
],
"author": "Iqbal Fauzi <[email protected]> (https://iqbalfn.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iqbalfn/bootstrap-autocomplete/issues"
},
"homepage": "https://github.com/iqbalfn/bootstrap-autocomplete#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "^7.12.11",
"babel-plugin-istanbul": "^5.1.4",
"grunt": "^1.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-run": "^0.8.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"uglify-js": "^3.12.4"
}
}