UNPKG

@karmaniverous/jsonmap

Version:

A hyper-generic JSON mapping library.

123 lines (122 loc) 3.53 kB
{ "author": "Jason G. Williscroft", "bugs": { "url": "https://github.com/karmaniverous/jsonmap/issues" }, "dependencies": { "lodash": "^4.17.21", "nanoid": "^5.0.7", "zod": "^3.23.8" }, "description": "A hyper-generic JSON mapping library.", "devDependencies": { "@eslint/js": "^9.7.0", "@rollup/plugin-alias": "^5.1.0", "@rollup/plugin-commonjs": "^26.0.1", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "@types/chai": "^4.3.16", "@types/eslint__js": "^8.42.3", "@types/eslint-config-prettier": "^6.11.3", "@types/eslint-plugin-mocha": "^10.4.0", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", "@types/numeral": "^2.0.5", "auto-changelog": "^2.4.0", "chai": "^5.1.1", "cross-env": "^7.0.3", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-mocha": "^10.4.3", "eslint-plugin-simple-import-sort": "^12.1.1", "eslint-plugin-tsdoc": "^0.2.17", "fs-extra": "^11.2.0", "jsdom-global": "^3.0.2", "knip": "^5.26.0", "lefthook": "^1.7.2", "mocha": "^10.6.0", "numeral": "^2.0.6", "nyc": "^17.0.0", "prettier": "^3.3.3", "release-it": "^17.6.0", "rimraf": "^5.0.9", "rollup": "^4.18.1", "rollup-plugin-dts": "^6.1.1", "source-map-support": "^0.5.21", "ts-node": "^10.9.2", "tslib": "^2.6.3", "typescript": "^5.5.3", "typescript-eslint": "^7.16.1" }, "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist" ], "homepage": "https://github.com/karmaniverous/jsonmap#readme", "keywords": [ "json", "map", "typescript" ], "license": "BSD-3-Clause", "main": "dist/index.cjs", "module": "dist/index.mjs", "name": "@karmaniverous/jsonmap", "publishConfig": { "access": "public" }, "release-it": { "git": { "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs", "commitMessage": "chore: release v${version}", "requireBranch": "main" }, "github": { "release": true }, "hooks": { "after:init": [ "npm run lint", "npm run test", "npm run build" ], "after:release": [ "git switch -c release/${version}", "git push -u origin release/${version}", "git switch ${branchName}" ] }, "npm": { "publish": true } }, "repository": { "type": "git", "url": "https://github.com/karmaniverous/jsonmap" }, "scripts": { "build": "rimraf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript", "knip": "knip", "lint": "eslint src/** && prettier -c src", "lint:fix": "eslint --fix src/** && prettier --write src", "release": "release-it", "release:pre": "release-it --no-git.requireBranch --github.prerelease --preRelease", "test": "cross-env LOG_LEVEL=debug nyc mocha" }, "type": "module", "types": "dist/index.d.ts", "version": "2.0.6" }