forked from bluzky/nice-select2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nice-select2",
"version": "1.0.0",
"description": "A lightweight vanilla javascript library that replaces native select elements with customizable dropdowns",
"main": "./dist/js/nice-select2.js",
"scripts": {
"watch": "webpack --watch --progress",
"start": "webpack-dev-server",
"dev": "webpack",
"clean": "shx rm -rf build/static",
"build": "npm run clean && cross-env NODE_ENV=\"production\" webpack"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "2.7.0",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.5.3",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"shx": "^0.2.2",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"terser-webpack-plugin": "^1.3.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^1.0.1",
"webpack": "^4.19.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {},
"prettier": {
"overrides": [
{
"files": "*.scss$",
"options": {
"semi": "true"
}
}
]
}
}