source: trip-planner-front/node_modules/socks/package.json@ e29cc2e

Last change on this file since e29cc2e was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 2.9 KB
Line 
1{
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"
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/ip": "1.1.0",
49 "@types/mocha": "^8.2.2",
50 "@types/node": "^14.14.41",
51 "coveralls": "3.1.0",
52 "mocha": "^8.3.2",
53 "nyc": "15.1.0",
54 "prettier": "^2.2.1",
55 "socks5-server": "^0.1.1",
56 "ts-node": "^9.1.1",
57 "tslint": "^6.1.3",
58 "tslint-config-airbnb": "^5.11.2",
59 "typescript": "^4.2.4"
60 },
61 "engines": {
62 "node": ">= 10.13.0",
63 "npm": ">= 3.0.0"
64 },
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",
78 "nyc": {
79 "extension": [
80 ".ts",
81 ".tsx"
82 ],
83 "include": [
84 "src/*.ts",
85 "src/**/*.ts"
86 ],
87 "exclude": [
88 "**.*.d.ts",
89 "node_modules",
90 "typings"
91 ],
92 "require": [
93 "ts-node/register"
94 ],
95 "reporter": [
96 "json",
97 "html"
98 ],
99 "all": true
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"
117}
Note: See TracBrowser for help on using the repository browser.