The LM Control website. Simple yet efficient.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 879B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "array-flatten",
  3. "version": "1.1.1",
  4. "description": "Flatten an array of nested arrays into a single flat array",
  5. "main": "array-flatten.js",
  6. "files": [
  7. "array-flatten.js",
  8. "LICENSE"
  9. ],
  10. "scripts": {
  11. "test": "istanbul cover _mocha -- -R spec"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/blakeembrey/array-flatten.git"
  16. },
  17. "keywords": [
  18. "array",
  19. "flatten",
  20. "arguments",
  21. "depth"
  22. ],
  23. "author": {
  24. "name": "Blake Embrey",
  25. "email": "hello@blakeembrey.com",
  26. "url": "http://blakeembrey.me"
  27. },
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/blakeembrey/array-flatten/issues"
  31. },
  32. "homepage": "https://github.com/blakeembrey/array-flatten",
  33. "devDependencies": {
  34. "istanbul": "^0.3.13",
  35. "mocha": "^2.2.4",
  36. "pre-commit": "^1.0.7",
  37. "standard": "^3.7.3"
  38. }
  39. }