package.json 946 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "common-path-prefix",
  3. "version": "3.0.0",
  4. "description": "Computes the longest prefix string that is common to each path, excluding the base component",
  5. "main": "index.js",
  6. "files": [
  7. "index.d.ts",
  8. "index.js"
  9. ],
  10. "scripts": {
  11. "test": "standard && nyc ava"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/novemberborn/common-path-prefix.git"
  16. },
  17. "author": "Mark Wubben (https://novemberborn.net/)",
  18. "license": "ISC",
  19. "bugs": {
  20. "url": "https://github.com/novemberborn/common-path-prefix/issues"
  21. },
  22. "homepage": "https://github.com/novemberborn/common-path-prefix#readme",
  23. "keywords": [
  24. "common",
  25. "path",
  26. "directory",
  27. "dir",
  28. "file",
  29. "root",
  30. "typescript",
  31. "common prefix",
  32. "common path",
  33. "common path start",
  34. "common root"
  35. ],
  36. "devDependencies": {
  37. "ava": "^2.3.0",
  38. "nyc": "^14.1.1",
  39. "standard": "^14.0.2"
  40. }
  41. }