package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "pac-resolver",
  3. "version": "5.0.0",
  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.1",
  12. "ip": "^1.1.5",
  13. "netmask": "^2.0.1"
  14. },
  15. "devDependencies": {
  16. "@types/debug": "4",
  17. "@types/ip": "^1.1.0",
  18. "@types/netmask": "^1.0.30",
  19. "@types/node": "^12.12.11",
  20. "@typescript-eslint/eslint-plugin": "1.6.0",
  21. "@typescript-eslint/parser": "1.1.0",
  22. "eslint": "5.16.0",
  23. "eslint-config-airbnb": "17.1.0",
  24. "eslint-config-prettier": "4.1.0",
  25. "eslint-import-resolver-typescript": "1.1.1",
  26. "eslint-plugin-import": "2.16.0",
  27. "eslint-plugin-jsx-a11y": "6.2.1",
  28. "eslint-plugin-react": "7.12.4",
  29. "mocha": "^6.2.2",
  30. "rimraf": "^3.0.0",
  31. "typescript": "^4.3.5"
  32. },
  33. "scripts": {
  34. "prebuild": "rimraf dist",
  35. "build": "tsc",
  36. "test": "mocha --reporter spec",
  37. "test-lint": "eslint src --ext .js,.ts",
  38. "prepublishOnly": "npm run build"
  39. },
  40. "repository": {
  41. "type": "git",
  42. "url": "git://github.com/TooTallNate/node-pac-resolver.git"
  43. },
  44. "engines": {
  45. "node": ">= 8"
  46. },
  47. "keywords": [
  48. "pac",
  49. "file",
  50. "proxy",
  51. "resolve",
  52. "dns"
  53. ],
  54. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  55. "license": "MIT",
  56. "bugs": {
  57. "url": "https://github.com/TooTallNate/node-pac-resolver/issues"
  58. }
  59. }