forked from coliff/bootstrap-print-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1009 Bytes
/
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
{
"name": "bootstrap-print-css",
"version": "1.0.1",
"description": "Print Stylesheet for Bootstrap 5",
"keywords": [
"bootstrap",
"print",
"stylesheet"
],
"homepage": "https://github.com/coliff/bootstrap-print-css",
"bugs": {
"url": "https://github.com/coliff/bootstrap-print-css/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coliff/bootstrap-print-css.git"
},
"license": "MIT",
"files": [
"css/*",
"LICENSE",
"package.json",
"README.md"
],
"author": "Christian Oliff (https://christianoliff.com)",
"scripts": {
"css": "npm run css-lint && npm run css-minify",
"css-lint": "stylelint \"css/bootstrap-print.css\"",
"css-minify": "cleancss -O1 --format breakWith=lf --output css/bootstrap-print.min.css css/bootstrap-print.css",
"test": "npm run css-lint"
},
"devDependencies": {
"clean-css-cli": "^5.6.0",
"stylelint": "^14.8.0",
"stylelint-config-twbs-bootstrap": "^3.0.1"
}
}