UNPKG

join-deep

Version:
53 lines (52 loc) 1.17 kB
{ "name": "join-deep", "version": "1.3.2", "description": "Deep join an array", "keywords": [ "deep", "join", "array", "joinDeep" ], "homepage": "https://github.com/kmalakoff/join-deep", "repository": { "type": "git", "url": "git+ssh://git@github.com/kmalakoff/join-deep.git" }, "license": "MIT", "author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)", "type": "module", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./package.json": "./package.json" }, "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.cts", "files": [ "dist" ], "scripts": { "build": "tsds build", "format": "biome check --write --unsafe", "test": "mocha --no-timeouts test/**/*.test.*", "test:engines": "nvu engines tsds test:node --no-timeouts", "version": "tsds version" }, "dependencies": { "reduce-deep": "*" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*", "lodash.flattendeep": "*" }, "engines": { "node": ">=0.8" }, "tsds": { "source": "src/index.ts" } }