UNPKG

typescript-flat-serializer

Version:

A typescript library to serialize/deserialize classes to/from string in a flat format. Supports inheritance, circular reference and more

63 lines (62 loc) 1.96 kB
{ "name": "typescript-flat-serializer", "version": "1.2.0", "description": "A typescript library to serialize/deserialize classes to/from string in a flat format. Supports inheritance, circular reference and more", "main": "dist/index.js", "module": "dist/index.mjs", "typings": "dist/index.d.ts", "scripts": { "build": "rollup -c --bundleConfigAsCjs", "test": "jest", "test:ci": "jest --coverage", "lint": "eslint . --ext .ts --fix", "lint:ci": "eslint . --ext .ts", "prettier": "prettier --write ." }, "repository": { "type": "git", "url": "git+https://github.com/ynixt/typescript-flat-serializer.git" }, "keywords": [ "typescript", "serializer", "inheritance", "circular-reference", "flat" ], "author": "Gabriel Alves Silva - Ynixt", "license": "MIT", "bugs": { "url": "https://github.com/ynixt/typescript-flat-serializer/issues" }, "homepage": "https://github.com/ynixt/typescript-flat-serializer#readme", "peerDependencies": { "reflect-metadata": "> 0.1.13" }, "devDependencies": { "@commitlint/cli": "^17.6.5", "@commitlint/config-conventional": "^17.6.5", "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.1.0", "@rollup/plugin-terser": "^0.4.3", "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/jest": "^29.5.2", "@typescript-eslint/eslint-plugin": "^5.59.8", "@typescript-eslint/parser": "^5.59.8", "esbuild": "^0.17.19", "eslint": "^8.42.0", "eslint-config-prettier": "8.8.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jsdoc": "^40.0.1", "eslint-plugin-prefer-arrow": "1.2.3", "jest": "^29.5.0", "jest-junit": "^16.0.0", "prettier": "^2.8.4", "rollup": "^3.23.0", "rollup-plugin-delete": "^2.0.0", "rollup-plugin-typescript2": "^0.34.1", "ts-jest": "^29.1.0", "tslib": "^2.5.3", "typescript": "^5.1.3" } }