package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "http-proxy-to-socks",
  3. "version": "1.1.2",
  4. "description": "hpts(http-proxy-to-socks) is a nodejs client to convert socks proxy into http proxy",
  5. "main": "lib/server.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/oyyd/http-proxy-to-socks"
  9. },
  10. "scripts": {
  11. "build": "babel src --out-dir lib",
  12. "dev": "jest --watch",
  13. "test": "eslint src && jest",
  14. "prepublish": "npm run test && npm run build"
  15. },
  16. "keywords": [
  17. "socks",
  18. "http proxy",
  19. "converting proxy"
  20. ],
  21. "bin": {
  22. "hpts": "./bin/hpts.js"
  23. },
  24. "author": "oyyd <oyydoibh@gmail.com>",
  25. "license": "MIT",
  26. "dependencies": {
  27. "chalk": "^2.4.1",
  28. "commander": "^2.9.0",
  29. "socks": "^1.1.10",
  30. "winston": "^3.1.0"
  31. },
  32. "devDependencies": {
  33. "babel-cli": "^6.26.0",
  34. "babel-jest": "^18.0.0",
  35. "babel-plugin-transform-async-to-generator": "^6.22.0",
  36. "babel-polyfill": "^6.22.0",
  37. "babel-preset-es2015": "^6.18.0",
  38. "eslint": "^3.13.1",
  39. "eslint-config-airbnb": "^14.0.0",
  40. "eslint-config-airbnb-base": "^11.0.1",
  41. "eslint-plugin-import": "^2.2.0",
  42. "jest": "^18.1.0"
  43. },
  44. "jest": {
  45. "testPathDirs": [
  46. "<rootDir>/src"
  47. ],
  48. "testRegex": "(\\.|/)(test|spec)\\.js$"
  49. }
  50. }