forked from coreui/coreui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
165 lines (165 loc) · 6.89 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "@coreui/coreui",
"version": "3.0.0-beta.4",
"description": "Open Source UI Kit built on top of Bootstrap 4",
"keywords": [
"bootstrap",
"css",
"dashboard",
"framework",
"front-end",
"responsive",
"sass",
"ui kit",
"webapp"
],
"homepage": "https://coreui.io",
"bugs": {
"url": "https://github.com/coreui/coreui/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Łukasz Holeczek",
"url": "http://holeczek.pl",
"github": "https://github.com/mrholek",
"twitter": "https://twitter.com/lukaszholeczek"
},
"contributors": [
{
"name": "Andrzej Kopański",
"url": "https://github.com/xidedix"
}
],
"files": [
"css/",
"dist/",
"js/",
"migration/",
"scss/",
"npm-postinstall.js"
],
"style": "dist/css/coreui.css",
"sass": "scss/coreui.scss",
"main": "dist/js/coreui.js",
"module": "dist/js/coreui.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/coreui/coreui.git"
},
"scripts": {
"bundlesize": "bundlesize",
"css": "npm-run-all --parallel css-lint css-compile* --sequential css-prefix* css-minify*",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 8 scss/coreui.scss dist/css/coreui.css",
"css-combine-duplicated-selectors": "postcss dist/css/coreui.css --use postcss-combine-duplicated-selectors --output dist/css/coreui.css",
"css-compile-partials": "node build/scss-partials.js && rimraf css && foreach -g \"scss/partials/*.scss\" -x \"node-sass --include-path scss --output-style expanded --source-map true --source-map-contents true --precision 6 scss/partials/#{name}.scss css/#{name}.css\"",
"css-lint": "npm-run-all --parallel css-lint-*",
"css-lint-styles": "stylelint --syntax scss \"scss/**/*.scss\"",
"css-unused-vars": "fusv scss/",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-prefix-partials": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-minify": "cleancss --level 2 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/coreui.min.css dist/css/coreui.css",
"css-minify-partials": "foreach -g \"css/*.css\" -x \"cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output css/#{name}.min.css css/#{name}.css\"",
"dist": "npm-run-all --parallel css js",
"js": "npm-run-all js-compile js-minify",
"js-compile": "npm-run-all --parallel js-compile-*",
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
"js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.js --sourcemap",
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
"js-compile-plugins": "node build/build-plugins.js",
"js-compile-utilities": "rollup --environment BUNDLE:false --config build/rollup.config.utilities.js --sourcemap",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"js-minify": "npm-run-all --parallel js-minify-*",
"js-minify-standalone": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/coreui.js.map,includeSources,url=coreui.min.js.map\" --output dist/js/coreui.min.js dist/js/coreui.js",
"js-minify-standalone-esm": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/coreui.esm.js.map,includeSources,url=coreui.esm.min.js.map\" --output dist/js/coreui.esm.min.js dist/js/coreui.esm.js",
"js-minify-bundle": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/coreui.bundle.js.map,includeSources,url=coreui.bundle.min.js.map\" --output dist/js/coreui.bundle.min.js dist/js/coreui.bundle.js",
"js-minify-utilities": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/coreui-utilities.js.map,includeSources,url=coreui-utilities.min.js.map\" --output dist/js/coreui-utilities.min.js dist/js/coreui-utilities.js",
"release-version": "node build/change-version.js",
"release-zip": "cd dist/ && zip -r9 coreui-$npm_package_version-dist.zip * && shx mv coreui-$npm_package_version-dist.zip ..",
"test": "npm-run-all css-lint js-lint dist bundlesize",
"watch": "npm-run-all --parallel watch-css watch-js",
"watch-js": "nodemon --ignore js/dist/ --ignore dist/ -e js -x \"npm-run-all js-compile* js-minify*\"",
"watch-css": "nodemon --ignore dist/ --ignore css/ --ignore scss/partials/ -e scss -x \"npm run css\""
},
"peerDependencies": {
"perfect-scrollbar": "^1.4.0",
"popper.js": "^1.16.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-throw-expressions": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"bundlesize": "^0.18.0",
"chalk": "^3.0.0",
"clean-css-cli": "^4.3.0",
"copyfiles": "^2.1.1",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"eslint-config-xo": "^0.27.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-unicorn": "^14.0.1",
"find-unused-sass-variables": "^1.0.3",
"foreach-cli": "^1.8.1",
"node-sass": "^4.13.0",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.5",
"perfect-scrollbar": "^1.4.0",
"popper.js": "^1.16.0",
"postcss-cli": "^6.1.3",
"postcss-combine-duplicated-selectors": "^8.0.3",
"postcss-merge-rules": "^4.0.3",
"rimraf": "^3.0.0",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semver": "^6.3.0",
"shelljs": "^0.8.3",
"shx": "^0.3.2",
"stylelint": "^12.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.13.0",
"terser": "^4.4.2"
},
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"bundlesize": [
{
"path": "./dist/css/coreui.css",
"maxSize": "25 kB"
},
{
"path": "./dist/css/coreui.min.css",
"maxSize": "22.5 kB"
},
{
"path": "./dist/js/coreui.bundle.js",
"maxSize": "45 kB"
},
{
"path": "./dist/js/coreui.bundle.min.js",
"maxSize": "25 kB"
},
{
"path": "./dist/js/coreui.js",
"maxSize": "23 kB"
},
{
"path": "./dist/js/coreui.min.js",
"maxSize": "15 kB"
}
]
}