-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "@unsass/rem",
"version": "2.2.0",
"description": "Sass functions and mixins to use rem units.",
"scripts": {
"lint:css": "stylelint --fix \"**/*.scss\"",
"lint": "npm-run-all --parallel lint:*",
"test": "jest",
"prepare": "husky",
"release": "semantic-release"
},
"engines": {
"node": ">=18.0.0"
},
"sass": "index.scss",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"glob": "^7.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"sass-true": "^7.0.1",
"semantic-release": "^21.0.6",
"stylelint": "^16.2.1",
"stylelint-config-unsass": "^1.0.1"
},
"dependencies": {
"@sass-collective/strip-unit": "^3.1.2",
"@unsass/css": "^2.2.0",
"sass": "^1.71.0"
},
"keywords": [
"sass",
"rem",
"convert",
"unsass",
"front-end"
],
"license": "MIT",
"homepage": "https://github.com/unsass/rem#readme",
"bugs": {
"url": "https://github.com/unsass/rem/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsass/rem.git"
},
"files": [
"src/**/*",
"*.scss",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
}
}