package.json 952 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "is-whitespace",
  3. "description": "Returns true if the value passed is all whitespace.",
  4. "version": "0.3.0",
  5. "homepage": "https://github.com/jonschlinkert/is-whitespace",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/is-whitespace.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/is-whitespace/issues"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/jonschlinkert/is-whitespace/blob/master/LICENSE"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "main": "index.js",
  25. "engines": {
  26. "node": ">=0.10.0"
  27. },
  28. "scripts": {
  29. "test": "mocha"
  30. },
  31. "devDependencies": {
  32. "mocha": "^2.2.1"
  33. },
  34. "keywords": [
  35. "character",
  36. "characters",
  37. "check",
  38. "is",
  39. "match",
  40. "regex",
  41. "space",
  42. "string",
  43. "test",
  44. "white",
  45. "whitespace"
  46. ]
  47. }