-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@studiometa/stylelint-formatter-gitlab",
"version": "0.0.1",
"description": "A StyleLint formatter for the GitLab Code Quality report",
"main": "src/index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"test": "bun test test/",
"lint": "eslint . --cache",
"fix": "eslint . --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studiometa/stylelint-formatter-gitlab.git"
},
"keywords": [
"gitlab",
"stylelint",
"formatter",
"code",
"quality"
],
"author": "Studio Meta <[email protected]> (https://www.studiometa.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/studiometa/stylelint-formatter-gitlab/issues"
},
"homepage": "https://github.com/studiometa/stylelint-formatter-gitlab#readme",
"devDependencies": {
"@studiometa/eslint-config": "4.0.1",
"@studiometa/prettier-config": "4.1.0",
"@studiometa/stylelint-config": "4.0.0",
"bun": "1.1.42",
"eslint": "9.4.0",
"prettier": "3.3.3",
"stylelint": "16.6.1"
},
"dependencies": {
"chalk": "^5.3.0",
"jest-diff": "^29.7.0",
"js-yaml": "^4.1.0"
},
"peerDependencies": {
"stylelint": "^16.0"
}
}