forked from djibe/material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 5.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "djibe-material",
"author": "Daemon Pty Ltd + djibe",
"bugs": {
"url": "https://github.com/djibe/material/issues"
},
"bundlesize": [
{
"path": "./css/material.css"
},
{
"path": "./css/material.min.css"
},
{
"path": "./js/material.js"
},
{
"path": "./js/material.min.js"
}
],
"dependencies": {},
"description": "Daemonite's Material UI 2 is a cross-platform and fully responsive front-end interface based on Google Material Design developed using Bootstrap 4.",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
"bundlesize": "^0.18.0",
"cli-real-favicon": "0.0.8",
"cssnano": "^4.1.10",
"eslint": "^7.21.0",
"eslint-plugin-compat": "^3.9.0",
"htmllint-cli": "0.0.7",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"pickadate": "3.6.4",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"ripplet.js": "^0.3.0",
"rollup": "^2.40.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"stylelint": "^13.11.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"uglify-js": "^3.12.8",
"vnu-jar": "^21.2.5"
},
"engines": {
"node": ">=12"
},
"file": [
"assets/",
"css/",
"js/"
],
"homepage": "https://djibe.github.io/material/",
"keywords": [
"bootstrap",
"css",
"framework",
"front-end",
"html",
"js",
"material",
"material-design",
"sass"
],
"license": "MIT",
"main": "js/material.js",
"peerDependencies": {
"jquery": ">=3.5.1",
"popper.js": "^1.16.1"
},
"repository": {
"type": "git",
"url": "https://github.com/djibe/material.git"
},
"sass": "assets/sass/material.scss",
"scripts": {
"bundlesize": "bundlesize",
"css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
"css-plugins": "npm-run-all --parallel css-lint* css-compile-* --sequential css-prefix-* css-minify-*",
"css-build": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify",
"css-build-docs": "npm-run-all --parallel css-lint-docs css-compile-docs --sequential css-prefix-docs css-minify-docs",
"css-compile": "node-sass --output-style expanded --precision 6 --source-map true --source-map-contents true assets/scss/material.scss css/material.css",
"css-compile-plugins": "node-sass --output-style expanded --precision 6 assets/scss/material-plugins.scss css/material-plugins.css",
"css-compile-docs": "node-sass --output-style expanded --precision 6 --source-map true --source-map-contents true docs-assets/scss/docs.scss docs/css/docs.css",
"css-lint": "stylelint --config build/.stylelintrc --syntax scss \"assets/scss/**/*.scss\"",
"css-lint-docs": "stylelint --config build/.stylelintrc --syntax scss \"docs-assets/scss/**/*.scss\"",
"css-lint-vars": "node build/lint-vars.js assets/scss/",
"css-minify": "postcss --config build/postcss.config.js --env minify --output css/material.min.css css/material.css",
"css-minify-plugins": "postcss --config build/postcss.config.js --env minify --output css/material-plugins.min.css css/material-plugins.css",
"css-minify-docs": "postcss --config build/postcss.config.js --env minify --output docs/css/docs.min.css docs/css/docs.css",
"css-prefix": "postcss --config build/postcss.config.js --env prefix --replace \"css/material.css\"",
"css-prefix-plugins": "postcss --config build/postcss.config.js --env prefix --replace \"css/material-plugins.css\"",
"css-prefix-docs": "postcss --config build/postcss.config.js --env prefix --replace \"docs/css/docs.css\"",
"dist": "npm-run-all --parallel css js --sequential bundlesize",
"docs": "npm-run-all --parallel css-build-docs js-build-docs --sequential docs-compile docs-lint",
"docs-compile": "bundle exec jekyll build",
"docs-lint": "npm-run-all docs-lint-vnu-jar",
"docs-lint-htmllint": "htmllint --rc build/doc.htmllintrc \"gh-pages/**/*.html\"",
"docs-lint-vnu-jar": "node build/vnu-jar.js",
"docs-serve": "bundle exec jekyll serve --incremental",
"favicon": "real-favicon generate ./build/faviconDescription.json ./build/faviconData.json ./favicons",
"js": "npm-run-all js-lint* js-compile* js-minify*",
"js-build": "npm-run-all js-lint js-compile js-minify",
"js-build-docs": "npm-run-all js-lint-docs js-minify-docs",
"js-compile": "rollup --config build/rollup.config.js --sourcemap",
"js-lint": "eslint --config build/.eslintrc.json assets/js/src/",
"js-lint-docs": "eslint --config build/.eslintrc.doc.json docs-assets/js/",
"js-minify": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=js/material.js.map,includeSources,url=material.min.js.map\" --output js/material.min.js js/material.js",
"js-minify-docs": "uglifyjs --comments \"/^!/\" --mangle --output docs/js/docs.min.js \"docs-assets/js/vendor/*.js\" docs-assets/js/docs.js"
},
"style": "css/material.css",
"version": "4.6.0"
}