-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "@tfs-8/basecss",
"version": "0.9.9",
"private": false,
"type": "commonjs",
"description": "BaseCSS is a lightweight css library designed to simplify responsive and scalable web design.",
"main": "dist/base.min.css",
"style": "dist/base.min.css",
"files": [
"dist/*"
],
"scripts": {
"build": "node build.js && npm run format && npm run minify",
"minify": "find dist -name '*.css' ! -name '*.min.css' -exec sh -c 'npx clean-css-cli \"$1\" -o \"${1%.css}.min.css\"' _ {} \\;",
"format": "prettier -w ."
},
"keywords": [
"css",
"html",
"reset",
"base",
"normal-css",
"css3",
"responsive-design",
"lightweight-css",
"minimal-css",
"frontend",
"web-design",
"modern-css",
"css-reset"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MFM-347/BaseCSS.git"
},
"bugs": {
"url": "https://github.com/MFM-347/BaseCSS/issues"
},
"author": {
"name": "Farhan Madni",
"url": "https://github.com/mfm-347",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"clean-css-cli": "^5.6.3",
"prettier": "^3.4.2"
}
}