-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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
{
"name": "@stylelint/prettier-config",
"version": "3.0.0",
"description": "stylelint org's shareable config for prettier",
"keywords": [
"prettier",
"prettierconfig"
],
"repository": "stylelint/prettier-config",
"license": "MIT",
"author": "stylelint",
"type": "module",
"exports": "./prettier.config.js",
"files": [
"prettier.config.js"
],
"scripts": {
"prepare": "husky install",
"test": "npm run lint",
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --ignore-path .gitignore",
"release": "np"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json,md,yml}": "prettier --write"
},
"eslintConfig": {
"extends": [
"stylelint"
]
},
"dependencies": {
"prettier-plugin-packagejson": "^2.4.4"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-stylelint": "^19.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"np": "^8.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"engines": {
"node": ">=14.18.0"
},
"publishConfig": {
"access": "public"
}
}