package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "unc-path-regex",
  3. "description": "Regular expression for testing if a file path is a windows UNC file path. Can also be used as a component of another regexp via the `.source` property.",
  4. "version": "0.1.2",
  5. "homepage": "https://github.com/regexhq/unc-path-regex",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": {
  8. "type" : "git",
  9. "url": "https://github.com/regexhq/unc-path-regex.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/regexhq/unc-path-regex/issues"
  13. },
  14. "license": "MIT",
  15. "files": [
  16. "index.js"
  17. ],
  18. "main": "index.js",
  19. "engines": {
  20. "node": ">=0.10.0"
  21. },
  22. "scripts": {
  23. "test": "mocha"
  24. },
  25. "devDependencies": {
  26. "mocha": "*"
  27. },
  28. "keywords": [
  29. "absolute",
  30. "expression",
  31. "file",
  32. "filepath",
  33. "match",
  34. "matching",
  35. "path",
  36. "regex",
  37. "regexp",
  38. "regular",
  39. "unc",
  40. "win",
  41. "windows"
  42. ],
  43. "verb": {
  44. "related": {
  45. "list": [
  46. "dotfile-regex",
  47. "is-unc-path",
  48. "unc-path-regex",
  49. "dotdir-regex",
  50. "path-regex",
  51. "dirname-regex",
  52. "is-glob"
  53. ]
  54. }
  55. }
  56. }