-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "change-case-all",
"version": "2.1.0",
"description": "All change-case methods bundled in a single module",
"license": "MIT",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"author": {
"name": "Jonas Gnioui",
"email": "btxtiger@icloud.com"
},
"repository": {
"type": "git",
"url": "https://github.com/btxtiger/change-case-all"
},
"scripts": {
"build": "vite build",
"test": "vitest run",
"release": "npm run build && npm run test && npm publish"
},
"files": [
"dist",
"LICENSE"
],
"keywords": [
"change-case",
"camel-case",
"pascal-case",
"change-case",
"snake-case",
"lowercase",
"uppercase",
"constant-case"
],
"dependencies": {
"change-case": "^5.2.0",
"sponge-case": "^2.0.2",
"swap-case": "^3.0.2",
"title-case": "^3.0.3"
},
"devDependencies": {
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
}
}