-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.58 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
{
"name": "grid-bootstrap5",
"version": "0.0.5",
"description": "Display: grid extension classes for Bootstrap5",
"main": "dist/css/grid-bootstrap-next.css",
"repository": "https://github.com/swingerman/grid-bootstrap5.git",
"author": "Miklos Szanyi <miklos.szanyi@gmil.com>",
"license": "MIT",
"scripts": {
"start": "npm run watch",
"css": "npm-run-all css-compile-main css-compress",
"css-lint": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"css-compile-main": "sass --style=expanded --source-map --embed-sources --load-path=node_modules scss/grid-bootstrap-next.scss dist/css/grid-bootstrap-next.css",
"css-compress": "cleancss --source-map --source-map-inline-sources --output dist/css/grid-bootstrap-next.min.css dist/css/grid-bootstrap-next.css",
"watch": "nodemon --watch scss/ --ext scss --exec \"npm run css\"",
"prepare": "yarn run css",
"audit:fix": "npx yarn-audit-fix"
},
"files": [
"dist",
"scss"
],
"keywords": [
"css",
"scss",
"responsive",
"grid",
"bootstrap",
"nootstrap5"
],
"bugs": {
"url": "https://github.com/swingerman/grid-bootstrap5/issues"
},
"homepage": "https://github.com/swingerman/grid-bootstrap5#readme",
"unpkg": "dist/css/grid-bootstrap-next.min.css",
"dependencies": {
"bootstrap": "^5.3.3"
},
"devDependencies": {
"clean-css-cli": "^5.6.3",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0",
"sass": "^1.93.2",
"stylelint": "^16.24.0",
"stylelint-config-standard-scss": "^16.0.0"
}
}