-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "halivert.css",
"version": "0.6.0",
"description": "Classless css stylesheet for rapid prototyping",
"scripts": {
"build-sass": "sass sass/:css/",
"build-postcss": "postcss --use autoprefixer --map false --dir css/ css/*.css",
"build-min": "cleancss css/*.css --batch --batch-suffix .min",
"clean": "rm -rf css/*",
"watch": "$npm_execpath run build-sass --watch",
"build": "$npm_execpath run build-sass && $npm_execpath run build-postcss && $npm_execpath run build-min",
"deploy": "$npm_execpath run clean && $npm_execpath run build"
},
"keywords": [
"classless",
"css",
"sass",
"prototyping"
],
"homepage": "https://halivert.dev/css",
"license": "MIT",
"author": "Halí V. <[email protected]> (http://halivert.dev/)",
"repository": "github:halivert/css",
"bugs": {
"url": "https://github.com/halivert/css/issues",
"email": "[email protected]"
},
"files": [
"css",
"sass"
],
"main": "css/halivert.css",
"unpkg": "css/halivert.min.css",
"style": "css/halivert.min.css",
"devDependencies": {
"autoprefixer": "10.4.16",
"clean-css-cli": "5.6.2",
"postcss": "8.4.31",
"postcss-cli": "10.1.0",
"sass": "1.68.0"
},
"type": "module",
"packageManager": "npm"
}