aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: c93a3b3c9397e8b05d78c2f36bc15100bee794e4 (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
{
	"name": "iro-sass",
	"version": "1.0.0",
	"author": "Feuerfuchs <me@feuerfuchs.dev>",
	"license": "MIT",
	"description": "A mixin-based Sass framework that makes it easier to work with BEM, organize variables and more.",
	"main": "src/main.scss",
	"keywords": [
		"sass",
		"scss",
		"library",
		"iro",
		"bem",
		"bemit",
		"gradients",
		"easing",
		"variables"
	],
	"repository": {
		"type": "git",
		"url": "git+https://git.vulpes.one/Feuerfuchs/iro-sass.git"
	},
	"bugs": {
		"url": "https://git.vulpes.one/Feuerfuchs/iro-sass/issues"
	},
	"homepage": "https://git.vulpes.one/Feuerfuchs/iro-sass",
	"devDependencies": {
		"mocha": "^8.3.2",
		"nodemon": "^2.0.7",
		"sass": "^1.32.8",
		"sass-lint": "^1.12.1",
		"sass-true": "^6.0.1",
		"sassdoc": "^2.7.3"
	},
	"scripts": {
		"prepublishOnly": "npm run test",
		"lint": "sass-lint '{src,test}/**/*.scss' -q -v || true",
		"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"
	}
}