package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "file-uri-to-path",
  3. "version": "2.0.0",
  4. "description": "Convert a file: URI to a file path",
  5. "main": "dist/src/index",
  6. "typings": "dist/src/index",
  7. "files": [
  8. "dist/src"
  9. ],
  10. "scripts": {
  11. "prebuild": "rimraf dist",
  12. "build": "tsc",
  13. "postbuild": "cpy --parents src test '!**/*.ts' dist",
  14. "test": "mocha --reporter spec dist/test/*.js",
  15. "test-lint": "eslint src --ext .js,.ts",
  16. "prepublishOnly": "npm run build"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/TooTallNate/file-uri-to-path.git"
  21. },
  22. "engines": {
  23. "node": ">= 6"
  24. },
  25. "keywords": [
  26. "file",
  27. "uri",
  28. "convert",
  29. "path"
  30. ],
  31. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/TooTallNate/file-uri-to-path/issues"
  35. },
  36. "homepage": "https://github.com/TooTallNate/file-uri-to-path",
  37. "devDependencies": {
  38. "@types/mocha": "^5.2.7",
  39. "@types/node": "^10.5.3",
  40. "@typescript-eslint/eslint-plugin": "1.6.0",
  41. "@typescript-eslint/parser": "1.1.0",
  42. "cpy-cli": "^2.0.0",
  43. "eslint": "5.16.0",
  44. "eslint-config-airbnb": "17.1.0",
  45. "eslint-config-prettier": "4.1.0",
  46. "eslint-import-resolver-typescript": "1.1.1",
  47. "eslint-plugin-import": "2.16.0",
  48. "eslint-plugin-jsx-a11y": "6.2.1",
  49. "eslint-plugin-react": "7.12.4",
  50. "mocha": "^6.2.0",
  51. "rimraf": "^3.0.0",
  52. "typescript": "^3.5.3"
  53. }
  54. }