package.json 615 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "is-regexp",
  3. "version": "1.0.0",
  4. "description": "Check whether a variable is a regular expression",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-regexp",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "regex",
  23. "regexp",
  24. "regular",
  25. "expression",
  26. "regular expression",
  27. "re",
  28. "check",
  29. "type",
  30. "is"
  31. ],
  32. "devDependencies": {
  33. "mocha": "*"
  34. }
  35. }