package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "array-flatten",
  3. "version": "2.1.2",
  4. "description": "Flatten nested arrays",
  5. "main": "array-flatten.js",
  6. "typings": "array-flatten.d.ts",
  7. "files": [
  8. "array-flatten.js",
  9. "array-flatten.d.ts",
  10. "LICENSE"
  11. ],
  12. "scripts": {
  13. "lint": "standard",
  14. "test-spec": "mocha -R spec --bail",
  15. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  16. "test": "npm run lint && npm run test-cov",
  17. "benchmark": "node benchmark"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/blakeembrey/array-flatten.git"
  22. },
  23. "keywords": [
  24. "array",
  25. "flatten",
  26. "arguments",
  27. "depth",
  28. "fast",
  29. "for"
  30. ],
  31. "author": {
  32. "name": "Blake Embrey",
  33. "email": "hello@blakeembrey.com",
  34. "url": "http://blakeembrey.me"
  35. },
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/blakeembrey/array-flatten/issues"
  39. },
  40. "homepage": "https://github.com/blakeembrey/array-flatten",
  41. "devDependencies": {
  42. "benchmarked": "^2.0.0",
  43. "istanbul": "^0.4.0",
  44. "mocha": "^3.1.2",
  45. "standard": "^10.0.0"
  46. }
  47. }