-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 831 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
{
"name": "change-every-case",
"version": "0.3.1",
"description": "Recursively change object keys case",
"keywords": [
"change",
"case",
"convert",
"transform",
"camel-case",
"pascal-case",
"params-case",
"kebab-case",
"dot-case"
],
"author": "Marcin Gajda",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcingajda/change-every-case"
},
"main": "index.js",
"type": "module",
"files": [
"dist"
],
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepare": "npm run clean && npm run build",
"test": "node --test --loader ts-node/esm src/*.test.ts"
},
"dependencies": {
"change-case": "^5.4.3"
}
}