-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.09 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
{
"name": "transform_json_keys",
"version": "1.0.8",
"author": "Myron Apostolakis",
"repository": {
"type": "git",
"url": "https://github.com/myapos/transform_json_keys.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/bun": "^1.1.10"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"keywords": [
"transform",
"json",
"mapper",
"bun",
"typescript",
"schema",
"nested",
"keys",
"arrays",
"objects",
"transformation",
"utility",
"javascript",
"data",
"conversion",
"mapping",
"flexible",
"api",
"response"
],
"bugs": {
"url": "https://github.com/myapos/transform_json_keys/issues"
},
"homepage": "https://github.com/myapos/transform_json_keys#readme",
"license": "MIT",
"scripts": {
"start": "bun run ./src/index.ts",
"build": "bun run build.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"type": "module"
}