-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 KB
/
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
44
45
{
"name": "casenator",
"version": "1.7.2",
"description": "Casenator is a lightweight utility package for converting strings between camelCase, PascalCase, kebab-case, uppercase, lowercase, and more, with built-in exception handling.",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"test:unit": "jest",
"test:coverage": "jest --coverage",
"lint:fix": "prettier --write \"**/*.cjs\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/imevanc/casenator.git"
},
"keywords": [
"js",
"javascript",
"camelCase",
"PascalCase",
"kebab-case",
"case",
"sensitive"
],
"author": "Evan Charalampidis",
"license": "MIT",
"bugs": {
"url": "https://github.com/imevanc/casenator/issues"
},
"homepage": "https://github.com/imevanc/casenator#readme",
"devDependencies": {
"@babel/preset-env": "^7.25.8",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"babel-jest": "^29.7.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0"
}
}