package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "pac-resolver",
  3. "version": "5.0.1",
  4. "description": "Generates an asynchronous resolver function from a PAC file",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "files": [
  8. "dist"
  9. ],
  10. "dependencies": {
  11. "degenerator": "^3.0.2",
  12. "ip": "^1.1.5",
  13. "netmask": "^2.0.2"
  14. },
  15. "devDependencies": {
  16. "@types/debug": "4",
  17. "@types/ip": "^1.1.0",
  18. "@types/netmask": "^1.0.30",
  19. "@types/node": "^17.0.19",
  20. "@typescript-eslint/eslint-plugin": "5.12.0",
  21. "@typescript-eslint/parser": "5.12.0",
  22. "eslint": "^8.9.0",
  23. "eslint-config-airbnb": "19.0.4",
  24. "eslint-config-prettier": "8.4.0",
  25. "eslint-import-resolver-typescript": "2.5.0",
  26. "eslint-plugin-import": "2.25.4",
  27. "mocha": "^9.2.1",
  28. "rimraf": "^3.0.2",
  29. "typescript": "^4.5.5"
  30. },
  31. "scripts": {
  32. "prebuild": "rimraf dist",
  33. "build": "tsc",
  34. "test": "mocha --reporter spec",
  35. "test-lint": "eslint src --ext .js,.ts",
  36. "prepublishOnly": "npm run build"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "git://github.com/TooTallNate/node-pac-resolver.git"
  41. },
  42. "engines": {
  43. "node": ">= 8"
  44. },
  45. "keywords": [
  46. "pac",
  47. "file",
  48. "proxy",
  49. "resolve",
  50. "dns"
  51. ],
  52. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  53. "license": "MIT",
  54. "bugs": {
  55. "url": "https://github.com/TooTallNate/node-pac-resolver/issues"
  56. }
  57. }