-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "stylelint-prettier",
"version": "5.0.2",
"description": "Runs prettier as an stylelint rule",
"keywords": [
"stylelint",
"stylelint-plugin",
"prettier"
],
"author": "Ben Scott",
"files": [
"index.js",
"recommended.js",
"README.md",
"LICENSE.md"
],
"type": "module",
"exports": {
".": "./index.js",
"./recommended": "./recommended.js"
},
"scripts": {
"lint": "eslint .",
"test": "yarn run lint && node --test test/*.test.js",
"format": "yarn run prettier '**/*.{js,json,md}' --write && yarn run lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prettier/stylelint-prettier.git"
},
"bugs": {
"url": "https://github.com/prettier/stylelint-prettier/issues"
},
"homepage": "https://github.com/prettier/stylelint-prettier#readme",
"dependencies": {
"prettier-linter-helpers": "^1.0.0"
},
"peerDependencies": {
"prettier": ">=3.0.0",
"stylelint": ">=16.0.0"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.0",
"postcss": "^8.4.25",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-markdown": "^1.2.0",
"postcss-scss": "^4.0.6",
"postcss-styled-syntax": "^0.5.0",
"postcss-syntax": "^0.36.2",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.12.1",
"prettier-plugin-svelte": "^3.0.0",
"stylelint": "^16.0.1",
"stylelint-test-rule-node": "^0.2.0",
"svelte": "^4.1.0",
"typescript": "5.3.2"
},
"engines": {
"node": ">=18.12.0"
},
"license": "MIT"
}