@normalized-db/normalizer
Version:
Normalize and restore `JavaScript` objects based on a simple schema.
45 lines (44 loc) • 1.17 kB
JSON
{
"name": "@normalized-db/normalizer",
"version": "3.0.0-alpha.2",
"author": "Sandro Schleu",
"license": "MIT",
"description": "Normalize and restore `JavaScript` objects based on a simple schema.",
"keywords": [
"JavaScript",
"Normalization"
],
"repository": {
"type": "git",
"url": "git+https://github.com/normalized-db/ndb.git"
},
"files": ["dist"],
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"cleanup": "rm -rf dist",
"build": "pnpm cleanup && tsc -d && node build.mjs",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "~5.2.2",
"typescript-eslint": "^7.15.0"
}
}