-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"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.1",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-packagejson": "^2.5.8",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"prettier-plugin-toml": "^2.0.1"
},
"devDependencies": {
"prettier": "^3.4.2"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
}
}