-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 2.11 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
{
"name": "@dmuy/datepicker",
"version": "2.0.5",
"description": "Date picker plugin for input fields.",
"keywords": [
"date-picker",
"material-design",
"date-range-picker",
"material-datepicker",
"material-date-picker"
],
"license": "MIT",
"author": {
"name": "Dionlee Uy",
"email": "[email protected]"
},
"repository": "git://github.com/dmuy/duDatepicker.git",
"homepage": "https://dmuy.github.io/duDatepicker/",
"main": "dist/duDatepicker.js",
"files": [
"dist",
"vue-datepicker.js",
"vue3-datepicker.js"
],
"scripts": {
"build": "npm run compile && npm run minify",
"build-theme": "npm run compile-css && npm run minify-theme-css",
"compile": "rollup --config rollup.config.mjs && npm run compile-css",
"compile-css": "node-sass -x --output-style=expanded src/duDatepicker.scss -o=dist && postcss --no-map -u autoprefixer -r dist/duDatepicker.css",
"compile-theme-css": "node-sass -x --output-style=expanded src/themes/_format.scss dist/duDatepicker-theme.css && postcss --no-map -u autoprefixer -r dist/duDatepicker-theme.css",
"minify": "uglifyjs dist/duDatepicker.js -c -m -o dist/duDatepicker.min.js && npm run minify-css",
"minify-css": "postcss dist/duDatepicker.css --no-map -o dist/duDatepicker.min.css --config postcss.config.js",
"minify-theme-css": "postcss dist/duDatepicker-theme.css --no-map -o dist/duDatepicker-theme.min.css --config postcss.config.js"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"autoprefixer": "^10.4.14",
"core-js": "^3.30.1",
"cssnano": "^6.0.0",
"node-sass": "^8.0.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"rollup": "^3.20.2",
"uglify-js": "^3.17.4"
},
"dependencies": {}
}