-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 992 Bytes
/
package.json
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
{
"name": "@barudakrosul/title-case",
"version": "0.0.2",
"description": "Converts a string to title case, where the first letter of each word is capitalized",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BarudakRosul/title-case.git"
},
"keywords": [
"title-case",
"capitalize",
"capitalized",
"letters"
],
"author": "Barudak Rosul",
"license": "CC0-1.0",
"types": "./index.d.ts",
"engines": {
"node": ">=11"
},
"bugs": {
"url": "https://github.com/BarudakRosul/title-case/issues"
},
"homepage": "https://github.com/BarudakRosul/title-case#readme",
"funding": {
"url": "https://ko-fi.com/barudakrosul"
},
"dependencies": {
"@barudakrosul/split-words": "^0.0.1"
},
"devDependencies": {
"assert": "^2.1.0",
"mocha": "^10.8.2"
}
}