package.json 535 B

123456789101112131415161718192021
  1. {
  2. "author": "Joshua Holbrook <josh.holbrook@gmail.com> (http://jesusabdullah.net)",
  3. "name": "flatten",
  4. "description": "Flatten arbitrarily nested arrays into a non-nested list of non-array items",
  5. "version": "1.0.2",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/jesusabdullah/node-flatten.git"
  9. },
  10. "main": "./index.js",
  11. "scripts": {
  12. "test": "node ./test.js"
  13. },
  14. "license": "MIT",
  15. "dependencies": {},
  16. "devDependencies": {},
  17. "optionalDependencies": {},
  18. "engines": {
  19. "node": "*"
  20. }
  21. }