-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "hgrid-css",
"version": "1.0.0",
"description": "A Lightweight and Practical CSS Utility Kit.",
"main": "sass/hgrid.scss",
"style": "dist/hgrid.min.css",
"author": {
"name": "Atle Hansson",
"user": "@ahansson"
},
"license": "MIT",
"homepage": "https://hgrid.io",
"keywords": [
"css",
"css-framework",
"css-utilities",
"dart-sass",
"hgrid",
"hgrid-css",
"postcss",
"sass",
"scss",
"responsive-design",
"utility-classes"
],
"repository": {
"type": "git",
"url": "https://github.com/ahansson/hgrid-css"
},
"bugs": {
"url": "https://github.com/ahansson/hgrid-css/issues"
},
"scripts": {
"watch": "sass --watch sass:dist",
"prefix": "postcss --use autoprefixer -b 'last 4 versions' --no-map dist/hgrid.css -o dist/hgrid.css",
"minify": "sass dist/hgrid.css dist/hgrid.min.css --style=compressed",
"build": "npm run prefix && npm run minify",
"update": "npx npm-check-updates -u && npm install"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.21",
"postcss-cli": "^11.0.0",
"sass": "^1.61.0"
}
}