-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.91 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
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
84
85
86
87
88
89
90
91
{
"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": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/gitlab": "13.1.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.0",
"@stylistic/eslint-plugin": "2.2.1",
"@types/node": "20.14.1",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"ajv": "8.15.0",
"ava": "6.1.3",
"c8": "9.1.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sonarjs": "1.0.3",
"eslint-plugin-unicorn": "53.0.0",
"gitlab-ci-license-checker-parser": "1.0.3",
"globals": "15.3.0",
"rollup": "4.18.0",
"rollup-plugin-dts": "6.1.1",
"semantic-release": "24.0.0",
"stylelint": "16.6.1",
"tap-xunit": "2.4.1",
"tsimp": "2.0.11",
"tslib": "2.6.3",
"typescript": "5.4.5",
"typescript-json-schema": "0.63.0"
},
"peerDependencies": {
"stylelint": ">=14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}