-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
executable file
·41 lines (41 loc) · 1.08 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
{
"name": "nice-select2",
"version": "2.1.0",
"description": "A lightweight Vanilla JavaScript plugin that replaces native select elements with customizable dropdowns.",
"main": "src/js/nice-select2.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"shx": "^0.3.4"
},
"devDependencies": {
"mini-css-extract-plugin": "^2.4.5",
"sass": "^1.45.1",
"sass-loader": "^12.4.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"watch": "webpack --watch --progress",
"dev": "npm run clean && cross-env NODE_ENV=\"development\" webpack",
"clean": "shx rm -rf build/static",
"build": "npm run clean && cross-env NODE_ENV=\"production\" webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluzky/nice-select2.git"
},
"keywords": [
"select",
"vanilla"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bluzky/nice-select2/issues"
},
"homepage": "https://github.com/bluzky/nice-select2#readme"
}