forked from dmuy/MDTimePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.11 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
{
"name": "@dmuy/timepicker",
"version": "2.0.2",
"description": "Material design inspired time picker plugin for input elements.",
"keywords": [
"time-picker",
"material-design",
"material-timepicker",
"material-time-picker"
],
"license": "MIT",
"author": {
"name": "Dionlee Uy",
"email": "dionleeuy@gmail.com"
},
"repository": "git://github.com/dmuy/MDTimePicker.git",
"homepage": "https://dmuy.github.io/MDTimePicker/",
"main": "dist/mdtimepicker.js",
"files": [
"dist",
"vue-timepicker.js",
"vue3-timepicker.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/mdtimepicker.scss -o=dist && postcss --no-map -u autoprefixer -r dist/mdtimepicker.css",
"compile-theme-css": "node-sass -x --output-style=expanded src/themes/_format.scss dist/mdtimepicker-theme.css && postcss --no-map -u autoprefixer -r dist/mdtimepicker-theme.css",
"minify": "uglifyjs dist/mdtimepicker.js -c -m -o dist/mdtimepicker.min.js && npm run minify-css",
"minify-css": "postcss dist/mdtimepicker.css --no-map -o dist/mdtimepicker.min.css --config postcss.config.js",
"minify-theme-css": "postcss dist/mdtimepicker-theme.css --no-map -o dist/mdtimepicker-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": {}
}