forked from prettier/plugin-pug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.25 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@prettier/plugin-pug",
"version": "2.1.1",
"description": "Prettier Pug Plugin",
"main": "dist/index.js",
"scripts": {
"clean": "rm -Rf coverage dist junit.xml pnpm-lock.yaml node_modules",
"build": "tsc --project ./tsconfig.build.json",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest --run",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build"
},
"keywords": [
"pug",
"prettier-plugin",
"prettier",
"formatter"
],
"author": {
"name": "Christopher Quadflieg",
"email": "[email protected]",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "https://github.com/prettier/plugin-pug.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/Shinigami92"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=L7GY729FBKTZY"
}
],
"bugs": "https://github.com/prettier/plugin-pug/issues",
"license": "MIT",
"files": [
"dist",
"src",
"tsconfig.build.json",
"tsconfig.json"
],
"dependencies": {
"pug-lexer": "^5.0.0"
},
"devDependencies": {
"@types/node": "~18.0.0",
"@types/prettier": "~2.6.3",
"@typescript-eslint/eslint-plugin": "~5.30.3",
"@typescript-eslint/parser": "~5.30.3",
"benchmark": "~2.1.4",
"eslint": "~8.18.0",
"eslint-config-prettier": "~8.5.0",
"eslint-define-config": "~1.5.1",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-inclusive-language": "~2.2.0",
"eslint-plugin-jsdoc": "~39.3.3",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-spellcheck": "~0.0.19",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "~3.0.0",
"typescript": "~4.7.4",
"vite": "~2.9.13",
"vitepress": "1.0.0-alpha.4",
"vitest": "~0.16.0"
},
"peerDependencies": {
"prettier": "^2.3.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.6.0",
"npm": ">=6.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom"
]
}
}
}