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
|
{
"name": "iro-sass",
"version": "1.0.2",
"author": "Volpeon <me@volpeon.ink>",
"license": "MIT",
"description": "A mixin-based Sass framework that makes it easier to work with BEM, organize variables and more.",
"main": "src/_iro-sass.scss.scss",
"style": "src/_iro-sass.scss.scss",
"sass": "src/_iro-sass.scss.scss",
"keywords": [
"sass",
"scss",
"library",
"iro",
"bem",
"bemit",
"gradients",
"easing",
"variables"
],
"repository": {
"type": "git",
"url": "git+https://git.vulpes.one/iro-sass/"
},
"homepage": "https://git.vulpes.one/iro-sass/",
"devDependencies": {
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"postcss-scss": "^4.0.3",
"sass": "^1.79.4",
"sass-true": "^8.1.0",
"sassdoc": "^2.7.3",
"stylelint": "^16.9.0",
"stylelint-config-sass-guidelines": "^12.1.0"
},
"scripts": {
"prepublishOnly": "npm run test",
"lint": "stylelint \"src/**/*.scss\"",
"fix": "stylelint \"src/**/*.scss\" --fix",
"livelint": "nodemon --watch src --watch test -e scss -x 'echo \"BEGIN LINT\" && npm run lint && echo \"END LINT\"'",
"doc": "sassdoc src",
"test": "mocha test/test.js"
}
}
|