-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 838 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
{
"name": "@replygirl/change-case-object",
"version": "0.0.0",
"description": "Recursively change the case of an object's keys",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "https://github.com/replygirl/change-case-object.git"
},
"keywords": [],
"author": {
"name": "replygirl",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/replygirl/change-case-object/issues"
},
"homepage": "https://github.com/replygirl/change-case-object#readme",
"devDependencies": {
"@types/node": "^14.0.27",
"typescript": "^4.0.0"
},
"files": [
"dist/**/*"
],
"dependencies": {
"change-case": "^4.1.1"
},
"engines": { "node": ">=12.x" }
}