-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "@unsass/css",
"version": "3.0.0",
"description": "Sass mixins to manage CSS declarations with custom properties option.",
"type": "module",
"scripts": {
"lint:css": "stylelint --fix \"**/*.scss\"",
"lint": "npm-run-all --parallel lint:*",
"test": "vitest",
"prepare": "husky",
"release": "semantic-release"
},
"engines": {
"node": ">=18"
},
"sass": "index.scss",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"sass-true": "^8.1.0",
"semantic-release": "^24.2.3",
"stylelint": "^16.15.0",
"stylelint-config-unsass": "^1.0.1",
"vitest": "^3.0.8"
},
"dependencies": {
"@unsass/utilities": "^1.3.1",
"sass": "^1.85.1"
},
"keywords": [
"sass",
"css",
"declaration",
"custom properties",
"unsass",
"front-end"
],
"license": "MIT",
"homepage": "https://github.com/unsass/css#readme",
"bugs": {
"url": "https://github.com/unsass/css/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsass/css.git"
},
"files": [
"src/**/*",
"*.scss",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
}
}