socks 2.8.0 → 2.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "socks",
3
3
  "private": false,
4
- "version": "2.8.0",
4
+ "version": "2.8.1",
5
5
  "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
6
6
  "main": "build/index.js",
7
7
  "typings": "typings/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "socks5"
24
24
  ],
25
25
  "engines": {
26
- "node": ">= 16.0.0",
26
+ "node": ">= 10.0.0",
27
27
  "npm": ">= 3.0.0"
28
28
  },
29
29
  "author": "Josh Glazebrook",
@@ -52,6 +52,7 @@
52
52
  "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts",
53
53
  "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml",
54
54
  "lint": "eslint 'src/**/*.ts'",
55
- "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ."
55
+ "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .",
56
+ "build-raw": "rm -rf build typings && tsc -p ."
56
57
  }
57
58
  }