-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "bootstrap-ie11",
"version": "5.3.3",
"description": "Bootstrap 5 for Internet Explorer 11",
"keywords": [
"bootstrap",
"css",
"ie",
"internet-explorer",
"polyfill"
],
"homepage": "https://github.com/coliff/bootstrap-ie11#readme",
"bugs": {
"url": "https://github.com/coliff/bootstrap-ie11/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coliff/bootstrap-ie11.git"
},
"funding": {
"type": "PayPal",
"url": "https://paypal.me/coliff"
},
"license": "MIT",
"author": "Christian Oliff (https://christianoliff.com)",
"main": "css/bootstrap-ie11.min.css",
"files": [
"css/*",
"LICENSE",
"package.json",
"README.md",
"scss/*"
],
"scripts": {
"build": "npm-run-all css-lint css-compile css-minify",
"css": "npm-run-all css-lint css-compile css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources scss:css",
"css-lint": "stylelint \"scss/*.scss\" --fix -f verbose",
"css-minify": "cleancss --format breakWith=lf --source-map --source-map-inline-sources --output css/bootstrap-ie11.min.css css/bootstrap-ie11.css",
"html-lint": "npx htmlhint \"tests/*.html\"",
"pa11y": "npx pa11y https://coliff.github.io/bootstrap-ie11/tests/",
"prettier": "npx prettier --write \"**/*.{json,md,scss,yml}\"",
"serve": "npx http-server -o /tests/index.html -p 8080 -c-1",
"spellcheck": "npx cspell \"**/*.*\" --no-progress",
"test": "npm run css-lint"
},
"config": {
"version_short": "5.3"
},
"devDependencies": {
"clean-css-cli": "4.3.0",
"npm-run-all": "4.1.5",
"sass": "1.79.4",
"stylelint": "16.12.0",
"stylelint-config-twbs-bootstrap": "15.1.0"
},
"sass": "scss/bootstrap-ie11.scss"
}