-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.07 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
{
"name": "sass-extras",
"version": "1.0.0",
"description": "Useful utilities for working with Sass",
"license": "MIT",
"repository": "sindresorhus/sass-extras",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "xo && stylelint index.scss && ava",
"docs": "sassdoc index.scss",
"version": "npm run docs && git add docs"
},
"files": [
"index.scss"
],
"keywords": [
"sass",
"scss",
"mixins",
"functions",
"helpers",
"helper",
"utility",
"util",
"utilities"
],
"devDependencies": {
"ava": "^3.15.0",
"node-sass": "^6.0.1",
"sassdoc": "^2.7.3",
"stylelint": "^13.6.1",
"stylelint-config-xo-scss": "^0.14.0",
"xo": "^0.46.4"
},
"stylelint": {
"extends": "stylelint-config-xo-scss",
"rules": {
"scss/no-duplicate-dollar-variables": null
}
},
"xo": {
"ignores": [
"docs"
]
}
}