forked from dmuy/duDatepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.9 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
{
"name": "@dmuy/datepicker",
"version": "2.0.1-rc",
"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"
],
"scripts": {
"build": "npm run compile && npm run minify",
"build-theme": "npm run compile-css && npm run minify-theme-css",
"compile": "rollup --config rollup.config.js && 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.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"autoprefixer": "^9.8.6",
"cssnano": "^4.1.10",
"node-sass": "^4.14.1",
"postcss-cli": "^7.1.2",
"rollup": "^2.27.0",
"uglify-js": "^3.10.4"
}
}