-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.37 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
50
{
"name": "dm-css",
"version": "2.3.2",
"description": "Dyno Might CSS - Fast Compact CSS Toolkit for everyone!",
"scripts": {
"start": "run-p dev web",
"dev": "gazeall -V -s 'prebuild build postbuild webrefresh' 'src/**/*' 'test/**/*'",
"web": "browser-sync start --config bs-config.js",
"webrefresh": "browser-sync reload",
"test": "cypress open",
"prebuild": "run-s clean unlink",
"clean": "shx rm -rf css",
"build": "sass src/:css/",
"postbuild": "run-s prefix minify link",
"link": "npm link",
"prefix": "postcss css/dm.css --use autoprefixer --no-map -o css/dm.prefix.css",
"minify": "postcss --no-map css/dm.prefix.css -o css/dm.min.css",
"unlink": "npm unlink -g"
},
"keywords": [
"css",
"layout",
"html",
"web"
],
"files": [
"css/dm.css",
"css/dm.min.css",
"css/dm.prefix.css"
],
"author": "Rajinder Yadav <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/rajinder-yadav/dm-css"
},
"homepage": "http://dynomightcss.com/",
"devDependencies": {
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"cssnano": "^6.1.2",
"cypress": "^13.7.1",
"gazeall": "^0.13.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"sass": "^1.72.0",
"shx": "^0.3.4"
}
}