mirror of
https://github.com/directus/directus.git
synced 2026-01-14 08:37:57 -05:00
* Add consistent test:coverage scripts * Add missing coverage deps * Submit to codecov * Update .github/workflows/check.yml Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Add codecov config * Run formatter, remove branches --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/format-title",
|
|
"version": "12.0.1",
|
|
"description": "Custom formatter that converts any string into Title Case",
|
|
"keywords": [
|
|
"title-case",
|
|
"title",
|
|
"case",
|
|
"directus",
|
|
"format",
|
|
"string",
|
|
"articles",
|
|
"conjunctions",
|
|
"prepositions"
|
|
],
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/format-title"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "MIT",
|
|
"author": "rijkvanzanten <rijkvanzanten@me.com>",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run '/^bundle|typecheck$/'",
|
|
"bundle": "tsup src/index.ts --format=esm --dts",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "catalog:",
|
|
"@vitest/coverage-v8": "catalog:",
|
|
"tsup": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|