package.json 717 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "file-uri-to-path",
  3. "version": "1.0.0",
  4. "description": "Convert a file: URI to a file path",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "directories": {
  8. "test": "test"
  9. },
  10. "scripts": {
  11. "test": "mocha --reporter spec"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/TooTallNate/file-uri-to-path.git"
  16. },
  17. "keywords": [
  18. "file",
  19. "uri",
  20. "convert",
  21. "path"
  22. ],
  23. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/TooTallNate/file-uri-to-path/issues"
  27. },
  28. "homepage": "https://github.com/TooTallNate/file-uri-to-path",
  29. "devDependencies": {
  30. "mocha": "3"
  31. }
  32. }