-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
59
60
61
62
{
"name": "grid-bootstrap",
"version": "0.11.7",
"description": "Responsive grid classes for bootstrap 4",
"main": "dist/css/grid-bootstrap.css",
"files": [
"dist",
"scss"
],
"unpkg": "dist/css/grid-bootstrap.min.css",
"scripts": {
"start": "npm run watch",
"css": "npm-run-all css-compile-main css-compress",
"lint-css": "stylelint \"scss/**/*.scss\" --syntax scss --cache --cache-location .cache/.stylelintcache",
"lint-css:fix": "stylelint \"scss/**/*.scss\" --syntax scss --cache --cache-location .cache/.stylelintcache --fix",
"css-compile-main": "sass --style=expanded ./scss/grid-bootstrap.scss ./dist/css/grid-bootstrap.css",
"css-compress": "uglifycss dist/css/grid-bootstrap.css --output dist/css/grid-bootstrap.min.css",
"watch": "nodemon --watch scss/ --ext scss --exec \"npm run css\"",
"prepare": "yarn run css",
"audit:fix": "npx yarn-audit-fix"
},
"repository": "git+https://github.com/swingerman/grid-bootstrap.git",
"keywords": [
"css",
"scss",
"responsive",
"grid",
"bootstrap"
],
"author": "Miklos Szanyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/swingerman/grid-bootstrap/issues"
},
"homepage": "https://github.com/swingerman/grid-bootstrap#readme",
"devDependencies": {
"css-lint": "^1.0.1",
"husky": "^6.0.0",
"nodemon": "^1.19.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"sass": "^1.43.2",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.19.0",
"uglifycss": "^0.0.29"
},
"dependencies": {
"bootstrap": "^4.3.1"
},
"lint-staged": {
"src/**/*.scss": [
"stylelint --syntax scss --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}