kjelsrud.dev/node_modules/deepmerge-ts/package.json

159 lines
5 KiB
JSON
Raw Normal View History

2023-07-19 21:31:30 +02:00
{
"name": "deepmerge-ts",
"version": "4.3.0",
"description": "Deeply merge 2 or more objects respecting type information.",
"keywords": [
"merge",
"deepmerge",
"deep merge",
"deep-merge",
"inferred types",
"inferred-types",
"recursive merge",
"recursive-merge",
"ts",
"ts merge",
"ts-merge",
"typescript",
"typescript merge",
"typescript-merge"
],
"homepage": "https://github.com/RebeccaStevens/deepmerge-ts#readme",
"bugs": {
"url": "https://github.com/RebeccaStevens/deepmerge-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RebeccaStevens/deepmerge-ts"
},
"license": "BSD-3-Clause",
"author": {
"name": "Rebecca Stevens",
"email": "rebecca.stevens@outlook.co.nz"
},
"sideEffects": false,
"type": "module",
"exports": {
"types": {
"import": "./dist/node/types/current/index.d.mts",
"require": "./dist/node/types/current/index.d.cts"
},
"import": "./dist/node/index.mjs",
"require": "./dist/node/index.cjs"
},
"main": "dist/node/index.cjs",
"module": "dist/node/index.mjs",
"types": "dist/node/types/legacy/v4_0.d.ts",
"typesVersions": {
"<4.1": {
"*": [
"dist/node/types/legacy/v4_0.d.ts"
]
},
"<4.7": {
"*": [
"dist/node/types/legacy/v4_6.d.ts"
]
},
">=4.7": {
"*": [
"dist/node/types/current/index.d.mts"
]
}
},
"files": [
"dist/node/",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"benchmark": "npm run build && npm run link & cd benchmark && npm run benchmark; cd ..",
"build": "rimraf build && npm run build:node && npm run build:deno && rimraf build && if-env-defined CI || npm run build:assume-unchanged",
"build:assume-unchanged": "cd dist; git update-index --assume-unchanged $(git ls-files | tr '\n' ' '); cd ..",
"build:deno": "rimraf dist/deno && tsc -p tsconfig.build.deno.json && denoify",
"build:node": "rimraf dist/node && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"build:types": "rimraf types/current && BUILD_TYPES_ONLY=1 rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"check-format": "prettier --list-different \"./**/*.{md,ts,yml}\"",
"check-spelling": "cspell --config=.cspell.json \"**/*.{md,ts}\"",
"cz": "git-cz",
"format": "prettier --write \"./**/*.{md,ts,yml}\"",
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "eslint .",
"lint:md": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
"prepare": "husky install",
"test": "npm run test:js && npm run test:types",
"test:js": "c8 ava",
"test:types": "npm run build:types && tsd -f 'tests/**/*.test-d.ts'"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@cspell/dict-cryptocurrencies": "3.0.1",
"@rebeccastevens/eslint-config": "1.5.2",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "11.0.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/lodash": "4.14.191",
"@types/node": "18.11.18",
"@types/rollup-plugin-auto-external": "2.0.2",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"ava": "4.3.3",
"c8": "7.12.0",
"codecov": "3.8.3",
"commitizen": "4.3.0",
"cspell": "6.20.1",
"denoify": "1.4.9",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "5.0.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "39.7.5",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.18.0",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.3",
"if-env-defined": "1.0.0",
"lint-staged": "13.1.0",
"lodash": "4.17.21",
"markdownlint-cli": "0.33.0",
"marked": "4.2.12",
"prettier": "2.8.3",
"prettier-plugin-packagejson": "2.4.2",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-dts": "4.2.3",
"semantic-release": "20.1.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.1",
"tsd": "0.25.0",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"packageManager": "yarn@3.4.1",
"engines": {
"node": ">=12.4.0"
},
"denoify": {
"out": "dist/deno",
"index": "src/index.ts"
}
}