forked from ksenginew/styless.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "styless.css",
"version": "0.0.1",
"description": "Minimal classless CSS framework for faster development.",
"scripts": {
"build:fmt": "sass styless.scss styless.css",
"build:min": "sass styless.scss styless.min.css --style=compressed",
"build": "npm run build:fmt && npm run build:min",
"watch": "npm run build:fmt -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonharelabs/styless.css.git"
},
"keywords": [
"css",
"simple",
"minimal",
"css",
"framework",
"fast"
],
"author": "Kavindu Santhusa",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/moonharelabs/styless.css/issues"
},
"homepage": "https://github.com/moonharelabs/styless.css#readme",
"devDependencies": {
"sass": "^1.42.1"
},
"style": "dist/css/bootstrap.css",
"sass": "styless.scss",
"main": "styless.min.css",
"module": "styless.min.css",
"files": [
"*.{css,map}",
"*.scss"
]
}