aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: a03255f4cd5437a6eb2e0b2622030a6b562aa8c7 (plain) (blame)
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/index.scss",
	"style": "src/index.scss",
	"sass": "src/index.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": "^9.2.0",
		"nodemon": "^2.0.15",
		"postcss-scss": "^4.0.3",
		"sass": "^1.49.7",
		"sass-true": "^6.0.1",
		"sassdoc": "^2.7.3",
		"stylelint": "^14.3.0",
		"stylelint-config-sass-guidelines": "^9.0.1"
	},
	"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"
	}
}