-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "@evgenyorekhov/prettier-config",
"version": "1.2.0",
"description": "Prettier config with a bunch of plugins",
"keywords": [
"prettier"
],
"homepage": "https://github.com/EvgenyOrekhov/prettier-config#readme",
"bugs": {
"url": "https://github.com/EvgenyOrekhov/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvgenyOrekhov/prettier-config.git"
},
"license": "MIT",
"author": "Evgeny Orekhov",
"main": ".prettierrc.json",
"files": [
".prettierrc.json"
],
"scripts": {
"test": "prettier '**/*' --check --ignore-unknown",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish --access public"
},
"dependencies": {
"@prettier/plugin-xml": "^3.4.2",
"prettier-plugin-curly": "^0.4.1",
"prettier-plugin-jsdoc": "^1.8.1",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-sh": "^0.19.0",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"prettier-plugin-toml": "^2.0.6"
},
"devDependencies": {
"prettier": "^3.9.6"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
}
}