package.json 762 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "untildify",
  3. "version": "4.0.0",
  4. "description": "Convert a tilde path to an absolute path: `~/dev` → `/Users/sindresorhus/dev`",
  5. "license": "MIT",
  6. "repository": "sindresorhus/untildify",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "contributors": [
  13. "silverwind <me@silverwind.io> (https://silverwind.io)"
  14. ],
  15. "engines": {
  16. "node": ">=8"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "tilde",
  27. "expansion",
  28. "expand",
  29. "untildify",
  30. "path",
  31. "home",
  32. "directory",
  33. "user",
  34. "shell",
  35. "bash"
  36. ],
  37. "devDependencies": {
  38. "ava": "^1.4.1",
  39. "rewire": "^4.0.1",
  40. "tsd": "^0.7.2",
  41. "xo": "^0.24.0"
  42. }
  43. }