Nessuna descrizione

package.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "has-values",
  3. "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/has-values",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/has-values",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/has-values/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "is-number": "^3.0.0",
  24. "kind-of": "^4.0.0"
  25. },
  26. "devDependencies": {
  27. "gulp-format-md": "^0.1.12",
  28. "mocha": "^3.4.1"
  29. },
  30. "keywords": [
  31. "array",
  32. "boolean",
  33. "empty",
  34. "find",
  35. "function",
  36. "has",
  37. "hasOwn",
  38. "javascript",
  39. "js",
  40. "key",
  41. "keys",
  42. "node.js",
  43. "null",
  44. "number",
  45. "object",
  46. "properties",
  47. "property",
  48. "string",
  49. "type",
  50. "util",
  51. "utilities",
  52. "utility",
  53. "value",
  54. "values"
  55. ],
  56. "verb": {
  57. "run": true,
  58. "toc": false,
  59. "layout": "default",
  60. "tasks": [
  61. "readme"
  62. ],
  63. "plugins": [
  64. "gulp-format-md"
  65. ],
  66. "related": {
  67. "list": [
  68. "has-value",
  69. "kind-of",
  70. "is-number",
  71. "is-plain-object",
  72. "isobject"
  73. ]
  74. },
  75. "reflinks": [
  76. "verb"
  77. ],
  78. "lint": {
  79. "reflinks": true
  80. }
  81. }
  82. }