-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 KB
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
{
"name": "combobox-component",
"description": "ComboBoxComponent is a very lightweight and dependency-free web component written in pure JavaScript.",
"version": "1.0.9",
"keywords": [
"lightweight",
"autocomplete",
"vanilla-javascript",
"combobox",
"mobile-friendly"
],
"main": "dist/js/combobox-component.min.js",
"repository": {
"type": "git",
"url": "https://github.com/marcellosurdi/ComboBoxComponent.git"
},
"bugs": {
"url": "https://github.com/marcellosurdi/ComboBoxComponent/issues"
},
"homepage": "https://github.com/marcellosurdi/ComboBoxComponent#readme",
"author": "Marcello Surdi <marcello.surdi@gmail.com> (https://www.marcellosurdi.name)",
"license": "MIT",
"scripts": {
"dev": "webpack serve --config config/webpack.dev.js --open",
"build": "webpack --config config/webpack.prod.js",
"jsdoc": "jsdoc -r src -d docs -R README.md -c jsdoc.json"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"clean-jsdoc-theme": "^4.2.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.1.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"html-loader": "^3.0.1",
"html-tag-attributes-plugin": "^0.1.6",
"html-webpack-plugin": "^5.5.0",
"jsdoc": "^3.6.7",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^9.0.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
}
}