Skip to content

Commit

Permalink
package.json consistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Apr 29, 2023
1 parent afee0cc commit 10006bb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
7 changes: 3 additions & 4 deletions packages/agent-base/package.json
Expand Up @@ -2,11 +2,10 @@
"name": "agent-base",
"version": "6.0.2",
"description": "Turn a function into an `http.Agent` instance",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
"dist"
],
"scripts": {
"build": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion packages/degenerator/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "3.0.4",
"description": "Compiles sync functions into async generator functions",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
Expand Down
3 changes: 3 additions & 0 deletions packages/proxy-agent/package.json
Expand Up @@ -4,6 +4,9 @@
"description": "Maps proxy protocols to `http.Agent` implementations",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest --env node --verbose --bail",
Expand Down
3 changes: 3 additions & 0 deletions packages/proxy/package.json
Expand Up @@ -4,6 +4,9 @@
"description": "An HTTP proxy written with Node.js (think Squid)",
"main": "./dist/proxy.js",
"types": "./dist/proxy.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec",
Expand Down
9 changes: 4 additions & 5 deletions packages/socks-proxy-agent/package.json
@@ -1,10 +1,12 @@
{
"name": "socks-proxy-agent",
"description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
"homepage": "https://github.com/TooTallNate/node-socks-proxy-agent#readme",
"version": "7.0.0",
"description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": {
"email": "nathan@tootallnate.net",
"name": "Nathan Rajlich",
Expand Down Expand Up @@ -124,9 +126,6 @@
"engines": {
"node": ">= 14"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec",
Expand Down

0 comments on commit 10006bb

Please sign in to comment.