-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@viivue/easy-select",
"prettyName": "Easy Select",
"codeName": "EasySelect",
"version": "4.1.2",
"description": "Customizing select is easier than ever.",
"homepage": "https://github.com/viivue/easy-select",
"repository": {
"type": "git",
"url": "[email protected]:viivue/easy-select"
},
"author": {
"name": "phucbm",
"url": "https://github.com/phucbm"
},
"keywords": [
"phucbm",
"javascript",
"es6"
],
"license": "MIT",
"main": "./dist/easy-select.module.js",
"scripts": {
"dev": "webpack serve --config config/webpack.dev.js",
"build": "cross-env ENTRY=dev webpack --config config/webpack.build.js",
"sass:compressed": "sass src/_style.scss:dist/easy-select.css --no-source-map",
"optimize": "csso dist/easy-select.css --output dist/easy-select.min.css --stat",
"output-css": "npm run sass:compressed && npm run optimize",
"prod": "webpack --config config/webpack.prod.js && cross-env TARGET=module webpack --config config/webpack.prod.js && npm run output-css",
"publish": "npm run prod & npm publish"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@viivue/atomic-css": "^1.1.6",
"babel-loader": "^8.2.2",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"csso-cli": "^4.0.1",
"honcau": "^0.0.2",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.4.2",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.43.5",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@phucbm/os-util": "^0.0.4"
}
}