package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "is-absolute",
  3. "description": "Returns true if a file path is absolute. Does not rely on the path module and can be used as a polyfill for node.js native `path.isAbolute`.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-absolute",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Elan Shanker (https://github.com/es128)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  10. "Shinnosuke Watanabe (https://shinnn.github.io)",
  11. "(http://sobak.pl)"
  12. ],
  13. "repository": "jonschlinkert/is-absolute",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/is-absolute/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "is-relative": "^1.0.0",
  30. "is-windows": "^1.0.1"
  31. },
  32. "devDependencies": {
  33. "gulp-format-md": "^1.0.0",
  34. "mocha": "^3.4.2"
  35. },
  36. "keywords": [
  37. "absolute",
  38. "built",
  39. "built-in",
  40. "check",
  41. "core",
  42. "detect",
  43. "dir",
  44. "file",
  45. "filepath",
  46. "is",
  47. "is-absolute",
  48. "isabsolute",
  49. "normalize",
  50. "path",
  51. "path-absolute",
  52. "path-is-absolute",
  53. "paths",
  54. "polyfill",
  55. "relative",
  56. "resolve",
  57. "shim",
  58. "slash",
  59. "slashes",
  60. "uri",
  61. "url",
  62. "util",
  63. "utils"
  64. ],
  65. "verb": {
  66. "run": true,
  67. "toc": false,
  68. "layout": "default",
  69. "tasks": [
  70. "readme"
  71. ],
  72. "plugins": [
  73. "gulp-format-md"
  74. ],
  75. "related": {
  76. "list": [
  77. "is-dotfile",
  78. "is-glob",
  79. "is-relative",
  80. "is-unc-path",
  81. "is-valid-glob"
  82. ]
  83. },
  84. "reflinks": [
  85. "verb"
  86. ],
  87. "lint": {
  88. "reflinks": true
  89. }
  90. }
  91. }