package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "_args": [
  3. [
  4. "socks@2.3.3",
  5. "D:\\Revathi_26-12-2022\\Task1\\laps-bpm\\BPM-UI"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "socks@2.3.3",
  10. "_id": "socks@2.3.3",
  11. "_inBundle": false,
  12. "_integrity": "sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA==",
  13. "_location": "/socks",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "socks@2.3.3",
  19. "name": "socks",
  20. "escapedName": "socks",
  21. "rawSpec": "2.3.3",
  22. "saveSpec": null,
  23. "fetchSpec": "2.3.3"
  24. },
  25. "_requiredBy": [
  26. "/socks-proxy-agent"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/socks/-/socks-2.3.3.tgz",
  29. "_spec": "2.3.3",
  30. "_where": "D:\\Revathi_26-12-2022\\Task1\\laps-bpm\\BPM-UI",
  31. "author": {
  32. "name": "Josh Glazebrook"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/JoshGlazebrook/socks/issues"
  36. },
  37. "contributors": [
  38. {
  39. "name": "castorw"
  40. }
  41. ],
  42. "dependencies": {
  43. "ip": "1.1.5",
  44. "smart-buffer": "^4.1.0"
  45. },
  46. "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
  47. "devDependencies": {
  48. "@types/chai": "4.2.4",
  49. "@types/ip": "1.1.0",
  50. "@types/mocha": "5.2.7",
  51. "@types/node": "12.12.6",
  52. "chai": "^4.1.2",
  53. "coveralls": "^3.0.0",
  54. "mocha": "6.2.2",
  55. "nyc": "14.1.1",
  56. "prettier": "^1.9.2",
  57. "socks5-server": "^0.1.1",
  58. "ts-node": "8.4.1",
  59. "tslint": "^5.8.0",
  60. "typescript": "3.7.2"
  61. },
  62. "engines": {
  63. "node": ">= 6.0.0",
  64. "npm": ">= 3.0.0"
  65. },
  66. "homepage": "https://github.com/JoshGlazebrook/socks/",
  67. "keywords": [
  68. "socks",
  69. "proxy",
  70. "tor",
  71. "socks 4",
  72. "socks 5",
  73. "socks4",
  74. "socks5"
  75. ],
  76. "license": "MIT",
  77. "main": "build/index.js",
  78. "name": "socks",
  79. "nyc": {
  80. "extension": [
  81. ".ts",
  82. ".tsx"
  83. ],
  84. "include": [
  85. "src/*.ts",
  86. "src/**/*.ts"
  87. ],
  88. "exclude": [
  89. "**.*.d.ts",
  90. "node_modules",
  91. "typings"
  92. ],
  93. "require": [
  94. "ts-node/register"
  95. ],
  96. "reporter": [
  97. "json",
  98. "html"
  99. ],
  100. "all": true
  101. },
  102. "private": false,
  103. "repository": {
  104. "type": "git",
  105. "url": "git+https://github.com/JoshGlazebrook/socks.git"
  106. },
  107. "scripts": {
  108. "build": "tslint --project tsconfig.json && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .",
  109. "coverage": "NODE_ENV=test nyc npm test",
  110. "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
  111. "lint": "tslint --project tsconfig.json 'src/**/*.ts'",
  112. "prepublish": "npm install -g typescript && npm run build",
  113. "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts"
  114. },
  115. "typings": "typings",
  116. "version": "2.3.3"
  117. }