{
  "name": "reduce-flatten",
  "author": "Lloyd Brookes <75pound@gmail.com>",
  "version": "3.0.1",
  "description": "Isomorphic map-reduce function to flatten an array into the supplied array",
  "repository": "https://github.com/75lb/reduce-flatten",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "index.mjs",
  "keywords": [
    "array",
    "reduce",
    "flatten"
  ],
  "engines": {
    "node": ">=8"
  },
  "scripts": {
    "test": "npm run dist && test-runner test.js",
    "docs": "jsdoc2md -c jsdoc.conf -t README.hbs index.mjs > README.md",
    "dist": "rollup -f umd -n flatten -o dist/index.js index.mjs"
  },
  "devDependencies": {
    "jsdoc-to-markdown": "^5.0.1",
    "rollup": "^1.22.0",
    "test-runner": "^0.6.0"
  },
  "files": [
    "index.mjs",
    "dist/index.js"
  ],
  "standard": {
    "ignore": [
      "dist"
    ]
  }
}
