UI for Zipcoin Blue

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