-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "@wagtail/stylelint-config-wagtail",
"version": "2.0.0",
"description": "Shareable Stylelint config for CSS and SCSS, following Wagtail’s code style",
"main": "index.js",
"files": [
"index.js"
],
"author": "wagtail",
"license": "MIT",
"homepage": "https://github.com/wagtail/stylelint-config-wagtail#readme",
"bugs": {
"url": "https://github.com/wagtail/stylelint-config-wagtail/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagtail/stylelint-config-wagtail.git"
},
"keywords": [
"bem",
"config",
"itcss",
"lint",
"styleguide",
"stylelint-config",
"stylelint",
"wagtail"
],
"dependencies": {
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-scss": "^17.0.0",
"stylelint-declaration-strict-value": "^1.11.0",
"stylelint-order": "^7.0.1"
},
"devDependencies": {
"@wagtail/eslint-config-wagtail": "^0.4.0",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"stylelint": "^17.9.0"
},
"peerDependencies": {
"stylelint": ">=17.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm"
}
},
"scripts": {
"format": "prettier --cache --write '**/*.{js,md,css,scss,yaml,yml,json}'",
"lint:format": "prettier --cache --check '**/*.{js,md,css,scss,yaml,yml,json}'",
"lint:js": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache ./ --max-warnings 0 --report-unused-disable-directives",
"lint:readme": "node write-rules.mjs --check",
"lint": "npm run lint:format && npm run lint:js && npm run lint:readme",
"preflight": "npm run format && npm run lint && npm run test",
"test": "node --test",
"write-rules": "node write-rules.mjs",
"print-config": "stylelint --print-config .stylelintrc"
},
"prettier": {
"singleQuote": true,
"quoteProps": "consistent"
}
}