-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "bootstrap-container-queries",
"version": "3.1.0",
"description": "Container queries for bootstrap",
"homepage": "https://github.com/bastienmoulia/bootstrap-container-queries",
"main": "scss/bootstrap-container-queries.scss",
"sass": "scss/bootstrap-container-queries.scss",
"style": "dist/bootstrap-container-queries.css",
"scripts": {
"start": "concurrently \"npm run serve\" \"npm run watch\"",
"build": "sass scss/build.scss dist/bootstrap-container-queries.min.css --style=compressed --load-path=node_modules && sass scss/build.scss dist/bootstrap-container-queries.css --load-path=node_modules",
"serve": "http-server ./docs -o -c-1",
"watch": "sass scss/build.scss docs/style.css --watch --load-path=node_modules",
"prettier": "prettier . --write",
"stylelint": "stylelint '**/*.scss' --fix"
},
"keywords": [
"container",
"queries",
"bootstrap"
],
"author": "Bastien Moulia",
"license": "MIT",
"exports": {
"./scss/bootstrap-container-queries": {
"style": "./scss/bootstrap-container-queries.scss"
},
"./dist/bootstrap-container-queries.css": {
"style": "./dist/bootstrap-container-queries.css"
},
"./dist/bootstrap-container-queries.min.css": {
"style": "./dist/bootstrap-container-queries.min.css"
}
},
"devDependencies": {
"concurrently": "^8.2.2",
"http-server": "^14.1.1",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-twbs-bootstrap": "^14.0.0"
},
"dependencies": {
"bootstrap-sass-modules": "^2.0.1"
}
}