You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

does-it-fit

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

does-it-fit - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+26
-5
package.json
{
"name": "does-it-fit",
"version": "1.0.0",
"version": "1.0.1",
"description": "Determine whether an HTTP endpoint's TCP response fits within minimum constraints",
"main": "index.js",
"bin": "./cli.js",
"bin": {
"does-it-fit": "./cli.js"
},
"scripts": {
"test": "standard && tap -R spec test"
},
"precommit": ["npm test"],
"precommit": [
"npm test"
],
"keywords": [
"performance", "TCP", "TCP Segment", "TCP window", "MSS", "Ethernet packet", "TCP roundtrip"
"performance",
"TCP",
"TCP Segment",
"TCP window",
"MSS",
"Ethernet packet",
"TCP roundtrip"
],

@@ -26,3 +36,14 @@ "author": "David Mark Clements",

"tap": "^6.3.2"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmarkclements/does-it-fit.git"
},
"bugs": {
"url": "https://github.com/davidmarkclements/does-it-fit/issues"
},
"homepage": "https://github.com/davidmarkclements/does-it-fit#readme"
}