-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "stylelint-config-wikimedia",
"version": "0.19.2",
"description": "Wikimedia shareable config for Stylelint",
"keywords": [
"code",
"code style",
"css",
"less",
"linting",
"shareable-config",
"stylesheets",
"stylelint",
"stylelint-config",
"wikimedia"
],
"homepage": "https://github.com/wikimedia/stylelint-config-wikimedia",
"bugs": "https://github.com/wikimedia/stylelint-config-wikimedia/issues",
"repository": {
"type": "git",
"url": "https://github.com/wikimedia/stylelint-config-wikimedia.git"
},
"license": "MIT",
"exports": {
".": "./index.js",
"./mediawiki": "./mediawiki.js",
"./support-basic": "./support-basic.json",
"./support-modern": "./support-modern.json"
},
"main": "index.js",
"files": [
"CHANGELOG.md",
"LICENSE",
"index.js",
"mediawiki.js",
"support-modern.json",
"support-basic.json",
"support-modern-rules.js",
"support-basic-rules.js",
"src/utils.js",
"rules/"
],
"scripts": {
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint --cache --max-warnings 0 .",
"lint:stylelint": "stylelint --report-needless-disables --max-warnings 0 test/fixtures/",
"test": "qunit && npm run lint"
},
"dependencies": {
"@stylistic/stylelint-config": "5.0.0",
"@stylistic/stylelint-plugin": "5.1.0",
"browserslist-config-wikimedia": "0.7.0",
"postcss-html": "1.8.1",
"postcss-less": "6.0.0",
"stylelint": "17.6.0",
"stylelint-config-recommended": "18.0.0",
"stylelint-no-unsupported-browser-features": "8.1.1"
},
"devDependencies": {
"eslint-config-wikimedia": "0.31.0",
"qunit": "2.25.0"
},
"peerDependencies": {
"postcss-less": "^6.0.0"
},
"engines": {
"node": ">=20.19.0"
}
}