Geen omschrijving

package.json 690B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "os-homedir",
  3. "version": "1.0.2",
  4. "description": "Node.js 4 `os.homedir()` ponyfill",
  5. "license": "MIT",
  6. "repository": "sindresorhus/os-homedir",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "builtin",
  23. "core",
  24. "ponyfill",
  25. "polyfill",
  26. "shim",
  27. "os",
  28. "homedir",
  29. "home",
  30. "dir",
  31. "directory",
  32. "folder",
  33. "user",
  34. "path"
  35. ],
  36. "devDependencies": {
  37. "ava": "*",
  38. "path-exists": "^2.0.0",
  39. "xo": "^0.16.0"
  40. }
  41. }