forked from DesignRevision/shards-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.47 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
58
59
60
61
62
63
64
65
66
67
{
"name": "shards-ui",
"description": "A free, modern and lightweight Bootstrap 4 UI toolkit for web makers.",
"version": "1.1.2",
"main": "js/index.js",
"scripts": {
"start": "npm-run-all --parallel watch serve-dist",
"copy-html": "copyfiles -f src/extras/*.html dist",
"copy-images": "copyfiles -u 3 src/extras/images/**/**/**/* dist/images/",
"css": "npm-run-all css-compile css-prefix css-minify",
"css-compile": "npm-run-all css-compile:main css-compile:extras css-compile:demo",
"css-compile:demo": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/extras/scss/shards-demo.scss dist/css/shards-demo.css",
"css-compile:extras": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/extras/scss/shards-extras.scss dist/css/shards-extras.css",
"css-compile:main": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/scss/shards.scss dist/css/shards.css",
"css-minify": "npm-run-all css-minify:main css-minify:extras css-minify:demo",
"css-minify:demo": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/shards-demo.min.css dist/css/shards-demo.css",
"css-minify:extras": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/shards-extras.min.css dist/css/shards-extras.css",
"css-minify:main": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/shards.min.css dist/css/shards.css",
"css-prefix": "postcss --config build/postcss.config.js --replace dist/css/*.css",
"js": "npm-run-all js-compile js-minify",
"js-compile": "webpack --config build/webpack.config.js",
"js-minify": "npm-run-all js-minify:main js-minify:demo",
"js-minify:demo": "uglifyjs --compress --mangle --output dist/js/demo.min.js dist/js/demo.js",
"js-minify:main": "uglifyjs --compress --mangle --output dist/js/shards.min.js dist/js/shards.js",
"serve-dist": "browser-sync start --server \"./dist\" --files \".\" --no-open --no-online --no-notify",
"watch": "npm-run-all --parallel watch-css watch-html watch-images watch-js",
"watch-css": "nodemon --ignore src/js --ignore dist/ -e scss -x \"npm run css\"",
"watch-html": "nodemon --ignore src/js --ignore src/scss --ignore src/extras/js --ignore src/extras/scss --ignore dist/ -e html -x \"npm run copy-html\"",
"watch-images": "nodemon --ignore src/js --ignore src/scss --ignore src/extras/js --ignore src/extras/scss --ignore dist/ -e jpg,jpeg,png -x \"npm run copy-images\"",
"watch-js": "nodemon --ignore src/scss --ignore dist/ -e js -x \"npm run js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DesignRevision/shards-ui"
},
"author": "Catalin Vasile",
"license": "MIT",
"bugs": {
"url": "https://github.com/DesignRevision/shards-ui/issues"
},
"homepage": "https://designrevision.com/downloads/shards",
"keywords": [
"ui",
"kit",
"ui kit",
"free",
"bootstrap 4"
],
"devDependencies": {
"autoprefixer": "^7.1.2",
"browser-sync": "^2.18.13",
"clean-css-cli": "^4.1.6",
"copyfiles": "^1.2.0",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"postcss-cli": "^4.1.0",
"sass-lint": "^1.10.2",
"sass-unused": "^0.2.2",
"uglify-js": "^3.1.2",
"webpack": "^3.6.0"
},
"dependencies": {
"bootstrap-datepicker": "^1.7.1",
"nouislider": "^10.1.0"
}
}