Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Sep 4, 2023
1 parent 8ab866e commit 03e8de4
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 23 deletions.
22 changes: 8 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"devDependencies": {
"@types/jsdom": "^21.0.0",
"@types/node": "^20.0.0",
"c8": "^7.0.0",
"c8": "^8.0.0",
"hastscript": "^7.0.0",
"jsdom": "^22.0.0",
"prettier": "^2.0.0",
"prettier": "^3.0.0",
"rehype-highlight": "^6.0.0",
"rehype-parse": "^8.0.0",
"rehype-slug": "^5.0.0",
Expand All @@ -33,7 +33,7 @@
"unified": "^10.0.0",
"unist-builder": "^3.0.0",
"unist-util-visit": "^4.0.0",
"xo": "^0.54.0"
"xo": "^0.56.0"
},
"scripts": {
"prepack": "npm run build && npm run format",
Expand All @@ -44,21 +44,15 @@
"test": "npm run build && npm run format && npm run test-coverage"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"trailingComma": "none"
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"xo": {
"prettier": true,
"overrides": [
{
"files": "packages/*/{lib/**,}*.js",
"envs": "browser"
}
]
"prettier": true
},
"remarkConfig": {
"plugins": [
Expand Down
19 changes: 16 additions & 3 deletions packages/rehype-dom-parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,24 @@
"unified": "^10.0.0"
},
"scripts": {},
"xo": false,
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
"ignoreCatch": true,
"strict": true
},
"xo": {
"prettier": true,
"envs": [
"browser"
]
}
}
19 changes: 16 additions & 3 deletions packages/rehype-dom-stringify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,24 @@
"unified": "^10.0.0"
},
"scripts": {},
"xo": false,
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
"ignoreCatch": true,
"strict": true
},
"xo": {
"prettier": true,
"envs": [
"browser"
]
}
}
19 changes: 16 additions & 3 deletions packages/rehype-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,24 @@
"unified": "^10.0.0"
},
"scripts": {},
"xo": false,
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
"ignoreCatch": true,
"strict": true
},
"xo": {
"prettier": true,
"envs": [
"browser"
]
}
}

0 comments on commit 03e8de4

Please sign in to comment.