forked from remarkjs/.github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "github",
"private": true,
"version": "0.0.0",
"description": "Community health files",
"license": "CC-BY-4.0",
"keywords": [],
"repository": "remarkjs/.github",
"bugs": "https://github.com/remarkjs/.github",
"author": "Titus Wormer <tituswormer@gmail.com> (wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (wooorm.com)"
],
"workspaces": [
"sandbox-templates/react-markdown-with-create-react-app",
"sandbox-templates/remark-rehype-with-parcel",
"sandbox-templates/remark-with-parcel"
],
"devDependencies": {
"eslint-config-xo-react": "^0.26.0",
"prettier": "^2.0.0",
"remark-cli": "^10.0.0",
"remark-frontmatter": "^4.0.0",
"remark-preset-wooorm": "^9.0.0",
"xo": "^0.47.0"
},
"scripts": {
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test": "npm run format"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"extends": "xo-react",
"prettier": true,
"env": [
"browser"
],
"overrides": [
{
"files": [
"sandbox-templates/**/*.tsx"
],
"rules": {
"@typescript-eslint/naming-convention": "off"
}
}
]
},
"remarkConfig": {
"plugins": [
"frontmatter",
"preset-wooorm"
]
}
}