-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 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
{
"name": "capstring",
"version": "1.0.0",
"description": "CaPiTaLiZe StRiNgS in 24+ ways!",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --format stylish",
"lint:report": "eslint . --format html -o coverage/lint-report.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianfunk/capstring.git"
},
"keywords": [
"cap",
"string",
"word",
"capitalize",
"capital",
"case",
"camel",
"pascal",
"snake",
"kebab",
"title",
"transform",
"text"
],
"author": "Brian Funk",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianfunk/capstring/issues"
},
"homepage": "https://github.com/brianfunk/capstring#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.17.0",
"vitest": "^4.0.18"
}
}