-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.8 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.8 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@analtools/jsonormalize",
"version": "0.0.16",
"description": "JSONormalize — Transform any JSON into a relational database schema. Automatically normalizes nested structures, detects relationships, and generates SQLite migrations. Perfect for rapid prototyping, data migrations, and structured data workflows.",
"keywords": [
"json-normalize",
"json-to-sql",
"schema-generator",
"relational-database",
"sqlite-migration",
"data-normalization",
"json-schema",
"data-transformation",
"database-migration",
"json-relational",
"sql-generator",
"data-modeling",
"json-parser",
"database-schema",
"sql-migrations",
"nested-json",
"postgresql",
"mysql",
"orm-tools",
"data-structure",
"schema-migration",
"json-to-database",
"data-integration",
"etl",
"sql-scripts",
"automatic-schema",
"database-design",
"data-formatting"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/analtools/jsonormalize.git"
},
"bugs": {
"url": "https://github.com/analtools/jsonormalize/issues"
},
"homepage": "https://github.com/analtools/jsonormalize#readme",
"bin": {
"jsonormalize": "./bin/run.js"
},
"main": "dist/index.js",
"type": "commonjs",
"author": "Anton Zhukov (MrCheater)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.9",
"@types/node-fetch": "^2.6.13",
"@types/pg": "^8.16.0",
"@vitest/coverage-v8": "^4.0.17",
"coverage-badges-cli": "^2.2.0",
"eslint": "^9.39.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"dependencies": {
"@electric-sql/pglite": "^0.3.15",
"commander": "^14.0.2",
"node-fetch": "^2.7.0",
"pg": "^8.17.1",
"sqlite3": "^5.1.7"
},
"scripts": {
"prettier:check": "prettier '**/*.{svg,yml,js,jsx,ts,tsx,html,md,css,json}' --check",
"prettier": "prettier '**/*.{svg,yml,js,jsx,ts,tsx,html,md,css,json}' --write",
"lint": "eslint --quiet .",
"lint:fix": "eslint --fix --quiet .",
"test": "vitest run",
"test:coverage": "vitest run --coverage && coverage-badges --output coverage/badge.svg",
"build": "tsc",
"prepare": "husky",
"cli:dev": "node --import=tsx bin/dev.js"
},
"lint-staged": {
"*.(ts|tsx|js|jsx|json|yml|md|mdx)": [
"prettier --write",
"eslint --fix"
],
"*.css": [
"prettier --write",
"stylelint --formatter=verbose --fix"
]
}
}