Changeset 59329aa for trip-planner-front/node_modules/socks
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/socks/package.json
rceaed42 r59329aa 1 1 { 2 "name": "socks", 3 "private": false, 4 "version": "2.6.1", 5 "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", 6 "main": "build/index.js", 7 "typings": "typings/index.d.ts", 8 "homepage": "https://github.com/JoshGlazebrook/socks/", 9 "repository": { 10 "type": "git", 11 "url": "https://github.com/JoshGlazebrook/socks.git" 2 "_args": [ 3 [ 4 "socks@2.6.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "socks@2.6.1", 10 "_id": "socks@2.6.1", 11 "_inBundle": false, 12 "_integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==", 13 "_location": "/socks", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "socks@2.6.1", 19 "name": "socks", 20 "escapedName": "socks", 21 "rawSpec": "2.6.1", 22 "saveSpec": null, 23 "fetchSpec": "2.6.1" 24 }, 25 "_requiredBy": [ 26 "/socks-proxy-agent" 27 ], 28 "_resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz", 29 "_spec": "2.6.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Josh Glazebrook" 12 33 }, 13 34 "bugs": { 14 35 "url": "https://github.com/JoshGlazebrook/socks/issues" 15 36 }, 16 "keywords": [ 17 "socks", 18 "proxy", 19 "tor", 20 "socks 4", 21 "socks 5", 22 "socks4", 23 "socks5" 37 "contributors": [ 38 { 39 "name": "castorw" 40 } 24 41 ], 25 " engines": {26 " node": ">= 10.13.0",27 " npm": ">= 3.0.0"42 "dependencies": { 43 "ip": "^1.1.5", 44 "smart-buffer": "^4.1.0" 28 45 }, 29 "author": "Josh Glazebrook", 30 "contributors": [ 31 "castorw" 32 ], 33 "license": "MIT", 34 "readmeFilename": "README.md", 46 "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", 35 47 "devDependencies": { 36 48 "@types/ip": "1.1.0", … … 47 59 "typescript": "^4.2.4" 48 60 }, 49 " dependencies": {50 " ip": "^1.1.5",51 " smart-buffer": "^4.1.0"61 "engines": { 62 "node": ">= 10.13.0", 63 "npm": ">= 3.0.0" 52 64 }, 53 "scripts": { 54 "prepublish": "npm install -g typescript && npm run build", 55 "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts", 56 "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml", 57 "coverage": "NODE_ENV=test nyc npm test", 58 "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", 59 "lint": "tslint --project tsconfig.json 'src/**/*.ts'", 60 "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ." 61 }, 65 "homepage": "https://github.com/JoshGlazebrook/socks/", 66 "keywords": [ 67 "socks", 68 "proxy", 69 "tor", 70 "socks 4", 71 "socks 5", 72 "socks4", 73 "socks5" 74 ], 75 "license": "MIT", 76 "main": "build/index.js", 77 "name": "socks", 62 78 "nyc": { 63 79 "extension": [ … … 82 98 ], 83 99 "all": true 84 } 100 }, 101 "private": false, 102 "repository": { 103 "type": "git", 104 "url": "git+https://github.com/JoshGlazebrook/socks.git" 105 }, 106 "scripts": { 107 "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .", 108 "coverage": "NODE_ENV=test nyc npm test", 109 "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", 110 "lint": "tslint --project tsconfig.json 'src/**/*.ts'", 111 "prepublish": "npm install -g typescript && npm run build", 112 "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml", 113 "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts" 114 }, 115 "typings": "typings/index.d.ts", 116 "version": "2.6.1" 85 117 }
Note:
See TracChangeset
for help on using the changeset viewer.