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
57 lines (57 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.08 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
{
"name": "@holema/mdtimepicker",
"version": "1.1.0",
"keywords": [
"time-picker",
"material-design",
"material-timepicker",
"material-time-picker"
],
"description": "Material design inspired time picker plugin for input elements.",
"main": "dist/mdtimepicker.js",
"files": [
"dist",
"vue-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.js && 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.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"autoprefixer": "^9.8.6",
"core-js": "^3.15.2",
"cssnano": "^4.1.11",
"node-sass": "^4.14.1",
"postcss-cli": "^7.1.2",
"rollup": "^2.50.3",
"uglify-js": "^3.13.8"
},
"dependencies": {
"moments": "0.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h2Entwicklung/MDTimePicker.git"
},
"author": {
"name": "H2Entwicklung",
"email": "entwicklung@h2-invent.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/h2Entwicklung/MDTimePicker/issues"
},
"homepage": "https://github.com/h2Entwicklung/MDTimePicker#readme"
}