package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "is-unc-path",
  3. "description": "Returns true if a filepath is a windows UNC file path.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-unc-path",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/is-unc-path",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/is-unc-path/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. "unc-path-regex": "^0.1.2"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^1.0.0",
  27. "mocha": "^3.4.2"
  28. },
  29. "keywords": [
  30. "absolute",
  31. "expression",
  32. "file",
  33. "filepath",
  34. "is",
  35. "match",
  36. "matching",
  37. "path",
  38. "regex",
  39. "regexp",
  40. "regular",
  41. "unc",
  42. "win",
  43. "windows"
  44. ],
  45. "verb": {
  46. "toc": false,
  47. "layout": "default",
  48. "tasks": [
  49. "readme"
  50. ],
  51. "plugins": [
  52. "gulp-format-md"
  53. ],
  54. "lint": {
  55. "reflinks": true
  56. },
  57. "related": {
  58. "list": [
  59. "is-relative",
  60. "is-absolute",
  61. "is-glob"
  62. ]
  63. }
  64. }
  65. }