-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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": "@nirazul/scss-utils",
"version": "2.0.0",
"description": "Sass utility functions and mixins",
"main": "_index.scss",
"directories": {
"lib": "lib"
},
"files": [
"_index.scss",
"lib",
"vendor"
],
"scripts": {
"prepublishOnly": "npm run test",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "npx stylelint --max-warnings 0 **/*.scss",
"test:unit": "npx sass test.scss test.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirazul/scss-utils.git"
},
"keywords": [
"functions",
"helpers",
"mixins",
"sass",
"scss",
"utils"
],
"author": {
"name": "Rouven Bühlmann",
"email": "[email protected]",
"url": "https://adorable-squid.ch"
},
"devDependencies": {
"sass": "^1.54.2",
"stylelint": "^16.2.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.1.0"
},
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/nirazul/scss-utils/issues"
},
"homepage": "https://github.com/nirazul/scss-utils#readme"
}