-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.17 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
{
"name": "prettier-plugin-md-title-case",
"version": "1.0.2",
"description": "Make Prettier convert your Markdown headings to title-case.",
"keywords": [
"prettier",
"prettier-plugin",
"markdown",
"title-case"
],
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "ava --verbose",
"preversion": "npm test"
},
"files": [
"index.d.ts"
],
"author": "Simon Haenisch (https://github.com/simonhaenisch)",
"license": "MIT",
"repository": "simonhaenisch/prettier-plugin-md-title-case",
"homepage": "https://github.com/simonhaenisch/prettier-plugin-md-title-case#readme",
"dependencies": {
"title-case": "^4.3.1"
},
"peerDependencies": {
"prettier": "3"
},
"devDependencies": {
"@types/node": "22.5.0",
"ava": "6.1.3",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports",
"./index.js"
],
"singleQuote": true,
"overrides": [
{
"files": [
".js",
".ts"
],
"options": {
"useTabs": true
}
}
]
}
}