mirror of
https://github.com/directus/directus.git
synced 2026-02-01 14:44:59 -05:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@directus/format-title",
|
|
"version": "9.0.0-rc.28",
|
|
"description": "Custom string formatter that converts any string into [Title Case](http://www.grammar-monster.com/lessons/capital_letters_title_case.htm)",
|
|
"keywords": [
|
|
"title-case",
|
|
"title",
|
|
"case",
|
|
"directus",
|
|
"format",
|
|
"string",
|
|
"articles",
|
|
"conjunctions",
|
|
"prepositions"
|
|
],
|
|
"main": "dist/format-title.cjs.js",
|
|
"module": "dist/format-title.bundler.js",
|
|
"unpkg": "dist/format-title.global.min.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "rijkvanzanten <rijkvanzanten@me.com>",
|
|
"repository": "directus/format-title",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "rollup -c rollup.config.js",
|
|
"start": "rollup -c rollup.config.js -w",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint \"src/**/*.ts\""
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.33.1",
|
|
"typescript": "^4.0.5"
|
|
}
|
|
}
|