join-deep
Version:
Deep join an array
55 lines (54 loc) • 1.26 kB
JSON
{
"name": "join-deep",
"version": "1.4.0",
"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",
"source": "src/index.ts",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "tsds format",
"prepublishOnly": "tsds validate",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"reduce-deep": "^1.3.2"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"lodash.flattendeep": ">=3.0.0",
"node-version-use": "*",
"ts-dev-stack": "*",
"tsds-config": "*"
},
"engines": {
"node": ">=0.8"
}
}