-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "reset-zone",
"version": "2.4.2",
"description": "A modern CSS reset for modern web applications!",
"packageManager": "[email protected]",
"markdown": "github",
"license": "MIT",
"organizationName": "Black Axis",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/license/mit/"
}
],
"author": "Khaled Mohamed <[email protected]> (https://github.com/krypton225)",
"contributors": [
"Khaled Mohamed"
],
"bugs": {
"url": "https://github.com/Black-Axis/reset-zone/issues",
"email": "[email protected]"
},
"keywords": [
"CSS",
"SCSS",
"Reset",
"SCSS Reset",
"CSS Reset",
"reset-zone"
],
"repository": {
"url": "https://github.com/Black-Axis/reset-zone",
"type": "git"
},
"scripts": {
"dev": "concurrently \"yarn scss:watch\" \"yarn scss:layer:watch\" \"yarn lint\" \"yarn postcss:watch\" \"yarn min:css\" \"yarn min:layer:css\"",
"scss:watch": "sass ./src/reset-zone.regular.scss:dist/reset-zone.regular.css --no-source-map --watch && postcss dist/reset-zone.regular.css --replace --config postcss.config.js",
"scss:layer:watch": "sass ./src/reset-zone.layer.scss:dist/reset-zone.layer.css --no-source-map --watch && postcss dist/reset-zone.layer.css --replace --config postcss.config.js",
"postcss:watch": "postcss ./dist/reset-zone.regular.css ./dist/reset-zone.layer.css --dir dist --use autoprefixer --watch --no-map",
"min:css": "nodemon --watch ./dist/reset-zone.regular.css --exec 'yarn postcss ./dist/reset-zone.regular.css -o ./dist/reset-zone.regular.min.css'",
"min:layer:css": "nodemon --watch ./dist/reset-zone.layer.css --exec 'yarn postcss ./dist/reset-zone.layer.css -o ./dist/reset-zone.layer.min.css'",
"lint": "yarn stylelint \"./src/**/*.scss\" --fix",
"upgrade": "ncu --upgrade",
"cmt": "cz",
"tags:github": "git push repo --tags",
"tags:gitlab": "git push gitlab --tags"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.13.0",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.6",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-minify": "^1.1.0",
"postcss-preset-env": "^10.0.8",
"postcss-scss": "^4.0.9",
"sass": "^1.80.4",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.8.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}