{
  "author": {
    "name": "Joshua Holbrook",
    "email": "josh.holbrook@gmail.com",
    "url": "http://jesusabdullah.net"
  },
  "name": "flatten",
  "description": "Flatten arbitrarily nested arrays into a non-nested list of non-array items",
  "version": "0.0.1",
  "repository": {
    "type": "git",
    "url": "git://github.com/jesusabdullah/node-flatten.git"
  },
  "main": "./index.js",
  "scripts": {
    "test": "node ./test.js"
  },
  "dependencies": {},
  "devDependencies": {},
  "optionalDependencies": {},
  "engines": {
    "node": "*"
  },
  "readme": "# flatten\n\nA tiny utility to flatten arrays of arrays (of arrays, etc., recursively, infinitely or to an optional depth) into a single array of non-arrays.\n\n## example:\n\n```js\n> var flatten = require('flatten');\nundefined\n> flatten([1, [2, 3], [4, 5, 6], [7, [8, 9]], 10])\n[ 1,\n  2,\n  3,\n  4,\n  5,\n  6,\n  7,\n  8,\n  9,\n  10 ]\n> flatten([1, [2, [3, [4, [5]]]]], 2)\n[ 1,\n  2,\n  3,\n  [ 4, [ 5 ] ] ]\n```\n\n## install:\n\n    npm install flatten\n\n## license:\n\nMIT/X11.\n",
  "readmeFilename": "README.md",
  "_id": "flatten@0.0.1",
  "_from": "flatten@"
}