forked from piotr-cz/format-title
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 KB
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
63
64
65
{
"name": "@wbce-d9/format-title",
"version": "10.0.0",
"type": "module",
"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"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"module": "dist/format-title.bundler.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "rijkvanzanten <rijkvanzanten@me.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/directus9/format-title.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build",
"dev": "tsx watch ./src/index.ts",
"lint": "eslint src",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rimraf": "4.1.2",
"simple-git-hooks": "^2.8.1",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd"
}