-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 969 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 969 Bytes
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
{
"name": "95css",
"version": "0.4.2",
"description": "A windows 95-style CSS framework",
"main": "css/95ss.min.css",
"scripts": {
"build": "sass --style=expanded --source-map 95css.scss css/95css.css",
"minify": "postcss css/95css.css --no-map --use cssnano --output css/95css.min.css",
"develop": "npm run build -- --watch",
"publish": "npm run build && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YoshiMannaert/95CSS.git"
},
"keywords": [
"CSS",
"framework",
"Windows",
"95"
],
"author": "Yoshi Mannaert",
"license": "MIT",
"bugs": {
"url": "https://github.com/YoshiMannaert/95CSS/issues"
},
"homepage": "https://yoshimannaert.github.io/95CSS/",
"devDependencies": {
"cssnano": "^7.0.6",
"postcss-cli": "^11.0.0",
"sass": "^1.83.1"
},
"files": [
"css",
"sass",
"fonts",
"95css.scss",
"LICENSE",
"README.md"
]
}