-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "prettier-plugin-mdx-no-text-child",
"version": "0.1.0",
"description": "Prettier plugin to enforce that MDX tags are always separated from their child by a blank line",
"main": "lib/index.js",
"scripts": {
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"prepublishOnly": "yarn format:check && yarn test && tsc",
"pretest": "jest --clearCache",
"test": "jest"
},
"keywords": [
"prettier",
"prettier-plugin",
"mdx",
"mdx-js"
],
"author": "Nicolas Cuillery <[email protected]>",
"license": "MIT",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"overrides": [
{
"files": [
"test/test-cases/*.ts"
],
"options": {
"tabWidth": 0
}
}
]
},
"peerDependencies": {
"prettier": ">=1.15.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/prettier": "^2.0.0",
"@types/unist": "^2.0.3",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}