package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "is-relative",
  3. "description": "Returns `true` if the path appears to be relative.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-relative",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  9. "Shinnosuke Watanabe (https://shinnn.github.io)"
  10. ],
  11. "repository": "jonschlinkert/is-relative",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/is-relative/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "is-unc-path": "^1.0.0"
  28. },
  29. "devDependencies": {
  30. "gulp-format-md": "^1.0.0",
  31. "mocha": "^3.4.2"
  32. },
  33. "keywords": [
  34. "absolute",
  35. "check",
  36. "file",
  37. "filepath",
  38. "is",
  39. "normalize",
  40. "path",
  41. "path.relative",
  42. "relative",
  43. "resolve",
  44. "slash",
  45. "slashes",
  46. "uri",
  47. "url"
  48. ],
  49. "verb": {
  50. "related": {
  51. "list": [
  52. "is-absolute",
  53. "is-dotfile",
  54. "is-glob",
  55. "is-relative",
  56. "is-unc-path"
  57. ]
  58. },
  59. "toc": false,
  60. "layout": "default",
  61. "tasks": [
  62. "readme"
  63. ],
  64. "plugins": [
  65. "gulp-format-md"
  66. ],
  67. "lint": {
  68. "reflinks": true
  69. }
  70. }
  71. }