-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.98 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "minimacss",
"version": "0.3.0",
"description": "A minimalistic CSS framework for rapid web development.",
"main": "dist/minimacss.css",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build:sass": "sass src/minimacss.scss dist/minimacss.css --style=expanded --source-map",
"build:prefix": "postcss dist/minimacss.css --use autoprefixer --no-map -o dist/minimacss.css",
"build:minify": "postcss dist/minimacss.css --use cssnano --no-map -o dist/minimacss.min.css",
"build": "npm run build:sass && npm run build:prefix && npm run build:minify",
"watch": "sass --watch src/minimacss.scss:dist/minimacss.css",
"serve": "browser-sync start --server --port 4200 --files \"dist/*.css, examples/*.html\" --startPath examples/index.html --no-notify",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"lint": "stylelint \"src/**/*.scss\"",
"lint:fix": "stylelint \"src/**/*.scss\" --fix",
"format": "prettier --write \"src/**/*.scss\" \"docs/**/*.md\" \"examples/**/*.html\"",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hardikforall/minimacss.git"
},
"keywords": [
"css",
"framework",
"minimalistic",
"web-development",
"front-end",
"scss",
"sass",
"dark-mode",
"responsive"
],
"author": "Hardik Patil",
"license": "MIT",
"bugs": {
"url": "https://github.com/hardikforall/minimacss/issues"
},
"homepage": "https://github.com/hardikforall/minimacss#readme",
"devDependencies": {
"autoprefixer": "^10.5.0",
"browser-sync": "^3.0.4",
"concurrently": "^9.2.1",
"cssnano": "^8.0.1",
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.3",
"sass": "^1.100.0",
"stylelint": "^17.12.0",
"stylelint-config-standard-scss": "^17.0.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"not ie 11"
]
}