説明なし

package.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "for-own",
  3. "description": "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/for-own",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Javier Cejudo <javier@javiercejudo.com> (https://www.javiercejudo.com)",
  9. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "jonschlinkert/for-own",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/for-own/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "for-in": "^1.0.1"
  28. },
  29. "devDependencies": {
  30. "gulp-format-md": "^0.1.11",
  31. "mocha": "^3.2.0"
  32. },
  33. "keywords": [
  34. "for",
  35. "for-in",
  36. "for-own",
  37. "has",
  38. "has-own",
  39. "hasOwn",
  40. "key",
  41. "keys",
  42. "object",
  43. "own",
  44. "value"
  45. ],
  46. "verb": {
  47. "run": true,
  48. "toc": false,
  49. "layout": "default",
  50. "tasks": [
  51. "readme"
  52. ],
  53. "plugins": [
  54. "gulp-format-md"
  55. ],
  56. "related": {
  57. "list": [
  58. "arr-flatten",
  59. "collection-map",
  60. "for-in"
  61. ]
  62. },
  63. "reflinks": [
  64. "verb"
  65. ],
  66. "lint": {
  67. "reflinks": true
  68. }
  69. }
  70. }