-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.58 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.58 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@gitlab-formatters/stylelint-formatter-gitlab",
"version": "1.0.2",
"description": "Formatter that transforms Stylelint reports into a format suitable for use with GitLab widgets.",
"keywords": [
"stylelint",
"stylelint-formatter",
"stylelintformatter",
"gitlab",
"gitlab-ci"
],
"homepage": "https://gitlab.com/gitlab-formatters/stylelint-formatter-gitlab",
"bugs": {
"url": "https://gitlab.com/gitlab-formatters/stylelint-formatter-gitlab/-/issues"
},
"repository": {
"url": "git+ssh://git@gitlab.com/gitlab-formatters/stylelint-formatter-gitlab.git"
},
"funding": "https://github.com/zavoloklom#how-to-support",
"license": "MIT",
"author": "Sergey Kupletsky <s.kupletsky@gmail.com> (https://github.com/zavoloklom)",
"type": "module",
"exports": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle.cjs"
},
"main": "dist/bundle.cjs",
"module": "dist/bundle.mjs",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "ava --verbose",
"test:coverage": "rimraf coverage && mkdir -p coverage && c8 ava --tap | tap-xunit --package='@gitlab-formatters/stylelint' > ./coverage/junit.xml"
},
"devDependencies": {
"@gitlab-formatters/eslint-formatter-gitlab": "1.0.1",
"@rollup/plugin-commonjs": "28.0.6",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-typescript": "12.1.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/gitlab": "13.2.8",
"@semantic-release/npm": "12.0.2",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/node": "24.3.1",
"@zavoloklom/eslint-config": "2.0.2",
"@zavoloklom/prettier-config": "1.0.4",
"ajv": "8.17.1",
"ava": "6.4.1",
"c8": "10.1.3",
"conventional-changelog-conventionalcommits": "9.1.0",
"eslint": "9.35.0",
"eslint-plugin-ava": "15.1.0",
"gitlab-ci-license-checker-parser": "1.0.3",
"globals": "16.4.0",
"rollup": "4.50.2",
"rollup-plugin-dts": "6.2.3",
"semantic-release": "24.2.8",
"stylelint": "16.24.0",
"tap-xunit": "2.4.1",
"tsimp": "2.0.12",
"tslib": "2.8.1",
"typescript": "5.8.3",
"typescript-json-schema": "0.65.1"
},
"peerDependencies": {
"stylelint": ">=14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}